• Resolved devesh70

    (@devesh70)


    Hi

    I am new to generatepress and exploring its free version. I am having some issues with the fonts. Can you please throw some light, if this is because of limitation of free version or some other issues
    The theme does not allow to change typography font of blog title, headings and paragraph. Any change i do in the typography reflects only in the headings and the body is taking same font as updated in wordpres editor.
    Also, I cant change font color of blog post title in wordpress editor and cant see any option in generate press colors either.
    Also, i notice that the font color looks different in mobile and laptop.
    Request you to help

    • This topic was modified 7 years, 10 months ago by devesh70.
    • This topic was modified 7 years, 10 months ago by devesh70.
Viewing 11 replies - 1 through 11 (of 11 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    The free version only has typography options for the body currently. We have some plans to expand the typography options a bit to the free theme very soon.

    For now, I’d be happy to help you achieve what you’re after with some CSS if you’d like? Just let me know exactly what you’re after.

    The text color is different on mobile and desktop? Any chance you can link me to your site?

    Let me know 🙂

    Thread Starter devesh70

    (@devesh70)

    Thanks Tom for your prompt response. Please find link:
    Click here

    The main problem is that I would like to change the typography and color of blog post title and body to take it from the theme (which gives me access to google fonts) rather than the wordpress editor. Want to make the blog post title bold and in blue color to match the sub-headings. Currently, I don’t see any option to change it either in WordPress editor or GP theme
    Also, have never tried CSS

    Try this CSS:

    h2.entry-title {
        font-weight: 800;
    }
    h2.entry-title a {
        color: #000;
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Not seeing the color difference between desktop and mobile. Which element are you referring to?

    Thread Starter devesh70

    (@devesh70)

    Hi Leo,

    I pasted this into additional css, but it is only applying to home page and not to the blog posts:
    Click here
    Also, the title color is still not blue as used for the sub-headings color.

    That one would be:

    h1.entry-title {
        color: #000;
    }

    You would need to modify the hex color code yourself to whatever you want.

    Let me know if this helps 🙂

    • This reply was modified 7 years, 10 months ago by Leo.
    Thread Starter devesh70

    (@devesh70)

    Yes, the color is now ok. But the changes are working only for the home page of my website and not the blog posts!Can you please help on applying the settings to blog posts.

    Thread Starter devesh70

    (@devesh70)

    Thanks Leo. I am able to change the color of the blog post title using h1 code.

    This CSS will over-ride the GP theme typography settings, right?

    Is there any CSS to change body font type?

    It would be something like:

    p {
        font-color: #000;
        font-weight: 800;
    }
    Thread Starter devesh70

    (@devesh70)

    Thanks Leo

    Thread Starter devesh70

    (@devesh70)

    Is there a way to apply the CSS to entire website? It seems it is working only for each post separately?

    Theme Author Tom

    (@edge22)

    Where are you adding the CSS? All of the CSS should be site-wide if added into a global area like “Customize > Additional CSS”.

    Let me know 🙂

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Generatepress font’ is closed to new replies.