An inbuilt font-changer has been added to this version of the theme. (The update on wordpress.org is awaiting approval by reviewers)
You can also just add this to your custom css:
body, input, textarea, button, select, label { font-family: Arial, sans-serif; }
As for the nav background changing, you can force it to not change by doing:
#nav-header.nav-container { background-color: #222; }
@media only screen and (min-width: 720px) {
#nav-header .nav ul { background-color: #222; }
}
Where #222 = your nav color.
Thank you, that’s worked perfectly. 🙂
Loving Hueman (2.0.5), and just used your mod above for the nav background (thanks!). I’d also like to change the menu sub-item background that appears when you hover over a parent menu item. Can you point me to the proper style element please?
I’ve just updated to the latest version of this theme and the custom css is no longer available in the theme options. How can I implement the above changes into my website?
Hi there
Thanks it worked great. How would I change the colour of the sub menus as well ?
I’ve just updated to the latest version of this theme and the custom css is no longer available in the theme options. How can I implement the above changes into my website?
Did you download from here? It still has a custom.css option. Although, child theme will work well too if you wish to stay with the .org version.
Thanks it worked great. How would I change the colour of the sub menus as well ?
Add !important to the second value, like this:
#nav-header.nav-container { background-color: #222; }
@media only screen and (min-width: 720px) {
#nav-header .nav ul { background-color: #222!important; }
}
Hi
I’m looking to change the color of the HEADINGS for both post/page titles and within the post itself. I had found this info somewhere on this support (which is fantastic, btw and one of the reasons this theme kept winning out, even though I tried others) but I can’t find it now!
THanks in advance