Change title, menu & body font sizes independently
- The topic ‘Change title, menu & body font sizes independently’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
What CSS can I use to independently adjust/set the sizes of both the site title and front page menu items, without affecting other titles or menus?
Many thanks,
Tom.
The blog I need help with is: (visible only to logged in users)
Hi Tom,
To change the site title you can use this code for example
h1.site-title {
font-size: 30px !important;
}
To change the menu items
.mainnav a { font-size: 16px; }
Thanks,
Edy