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 🙂
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
Leo
(@leohsiang)
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?
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.
Leo
(@leohsiang)
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.
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.
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?
Leo
(@leohsiang)
It would be something like:
p {
font-color: #000;
font-weight: 800;
}
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 🙂