How to change font color
-
I am not able to figure out how to change my tagline font from white to black on the booklite theme so that it will show up against the background. Thank you
The blog I need help with is: (visible only to logged in users)
-
Hi,
If you are using the Premium plan or Business plan, you can go to Customize > CSS and add the css below.
.site-title a, .site-title a:hover, .site-title a:visited, .site-description { color: #000; } -
Actually, just start by trying this code instead:
.site-title a { color: #000; }Let me know if this works for you.
-
That changes the site title color but, not the tagline color under it. Can you help with this?
-
For the tagline, the CSS would be:
.site-description { color: #000; }I hope that helps :)
-
-
Hi,
Try this:
.wf-active h2 { font-style: normal; }Some available property values are italic and oblique. Normal is default.
Let me know if this works for you.
- The topic ‘How to change font color’ is closed to new replies.