Hi there, I am new to Enfold. How do I change the header font/size?
Thanks!
Taylor
Hi Taylor,
We’ll need a bit more detail on where exactly the header is you want to change. There are just a few too many possibilities theme wide for headers to guess which one you might be looking to modify.
Regards,
Devin
When you look at the live demo page, it’s the text directly across from the Enfold logo – “Home, Features, Headers, Portfolio” etc…
You can either change the colors via the themes Styling Options in the header tab or directly with css. For CSS, add the following to your Quick CSS in the styling tab:
#top .main_menu .menu > li > a {
color: #c00;
}
#top .main_menu .menu > li > a:hover {
color: #cc0;
}
#top .main_menu ul:first-child > li.current-menu-item > a{
color: #cc0;
}
Regards,
Devin
Thanks! Just what I was looking for:)