How to change text color and wordwrap?
-
Brand new at this, just starting. I have some experience with HTML as a hobby. How do I change the font color of my title and eliminate the word wrap?
The blog I need help with is: (visible only to logged in users)
-
Hi there, I see that you have hidden your site title by unchecking the box at Customiize > Site Identity. Are you wanting to show the site title below your logo image?
-
-
Thanks for the clarification. To change the color of your site title, go to Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.
.site-title a, .site-title a:hover, .site-title a:focus, .site-title a:active { color: #66cc33; }For the wordwrap, I’m assuming you want the entire title on a single line. Add the following to your custom CSS and you will be good to go.
.site-branding { max-width: 500px; width: 100%; }
- The topic ‘How to change text color and wordwrap?’ is closed to new replies.