Site title / Tag line text colour change
-
Hi, im trying to change the Site title / Tag line text colour ?
If possible i would to change the Site title txt to orange
& the Tag line txt to black, if this is possible using CSS.
regards JayThe blog I need help with is: (visible only to logged in users)
-
Hi @overlandtours!
You can change those colors like this:
/* Site title color */ .site-title a { color: orange; } /* Tagline color */ .site-description { color: black; }The site title does change colors when you hover over it – you can use this style to change that if you’d like:
.site-title a:hover { color: orange; }In addition to basic colors like “orange” and “black” you can also use HTML color codes for a wider variety of options :)
-
-
- The topic ‘Site title / Tag line text colour change’ is closed to new replies.