Hello, I was just wondering how I go about changing the size of the font in css for my menu and my page. Thank you!
http://squeegeeprints.wordpress.com
The blog I need help with is squeegee-prints.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hello, I was just wondering how I go about changing the size of the font in css for my menu and my page. Thank you!
http://squeegeeprints.wordpress.com
The blog I need help with is squeegee-prints.com.
First, if you've set custom fonts in the Appearance → Custom Design → Fonts tab, then you should adjust the Body Text font size there. In your theme, that affects both the text in the main menu as well as the page.
If you want to target them to be different sizes, you could use this to target the menu fonts:
.nav a {
font-size: 2em !important;
}
Or this to targe the page fonts:
.entry {
font-size: 2em !important;
}
But it's better to use the Fonts tab first instead of adding new CSS when you have already set a custom font.
you rule!
This topic has been closed to new replies.