Site Title and Tagline Font Size Color
The topic ‘Site Title and Tagline Font Size Color’ is closed to new replies.
Need help? Check out our Support site, then
Hi there!
Got two questions…
1) How can I just change the font SIZE and font COLOR for the site title and tagline, without affecting other headings in the site?
2) How to reduce the space (gap) between site banner and post title?
Many thank for helping
RR
The blog I need help with is: innovacionpersonalralfrussi.wordpress.com
You can customize the Site Title and Tagline using the following custom CSS selectors.
.site-title {
color: #ff0000;
font-size: 60px;
}
.site-description {
color: #00ff00;
font-size: 21px;
}
I’m not sure what you are looking to do for the second item. You might try targeting the site content container and reducing the padding? Something like this:
.site-content {
padding-top: 0;
}
I hope that helps. Otherwise, you can also try posting in the CSS Customization forums for additional customization help and tips.
The topic ‘Site Title and Tagline Font Size Color’ is closed to new replies.