Hi,
By default the bold inherits from the settings made under Enfold child settings > general styling.
In the blog section, how to switch bold and H1, H2, etc elements to black instead of the inherited coloud?
Thanks
Hey JTV Digital!
On the actual blog page where the post entries are listed? Try this CSS.
.template-blog strong, .template-blog h1 { color: black !important; }
If that’s not working then send us a link to your page and take a screenshot highlighting the area.
Cheers!
Elliott
Hi,
No in the blog post itself, example
http://www.jtvdigital.com/blog/which-one-is-best-facebook-native-video-or-youtube/
There are some bold items that appear in blue (the colour set in the enfold layout options), how to make it black?
Thnaks
Hi!
Add this in the Quick CSS field:
.main_color strong {
color: #000000;
}
Or go to the Advanced Styling panel then modify the “strong” tag.
Best regards,
Ismael
Hi,
It does not change anything, please see here for example
http://www.jtvdigital.com/blog/6-proven-ways-to-build-an-engaged-audience-on-soundcloud/
The bold text in the body text is still blue
Thanks
Hi!
Please add following code to Quick CSS
.main_color b {
color: #000000;
}
That is because you are using B tag instead of Strong, which is semantically correct.
Cheers!
Yigit
Yes it’s ok, thanks!