Font sizes
- The topic ‘Font sizes’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
I’d like to make the font size of the menu bar larger. Is there a CSS code for this? Also, is there a code to make the title smaller and a code to make the tagline larger? Oh, and if there’s a code to remove the shadows from the tagline too that would be awesome.
Thank you.
Julia
The blog I need help with is: (visible only to logged in users)
Hi Julia,
You can use the following CSS to make these changes, and change the number value as desired:
Tagline font size and remove shadows:
#header .site-description {
font-size: 3.5em;
text-shadow: none;
}
Title font size:
#header h1.site-title a {
font-size: 50px;
}
Menu font size:
#navigation .menu a {
font-size: 15px;
}
I hope this helps! :)
Emily
Worked great! Thank you so much!