Change header color
- The topic ‘Change header color’ is closed to new replies.
Need help? Check out our Support site, then
How can I change the header menu color?
Where is written Home, About…
I don’t like the dark gray.
I bought the Custom CSS package in WordPress, but I don’t understand much about CSS so I can’t change it easily
The blog I need help with is: (visible only to logged in users)
You can change the color of the menu links by using the following CSS.
.main-navigation a {
color: blue;
}
Change the color to the color you’d like. You can use hex color codes to gain access to a large selection of colors. See this site for a color picker that will give you the hex code for the color you select.
Actually I meant the dark gray color from the menu background, not the text.
Is it also possible?
For that, you can use the following CSS:
.navigation-wrap {
background: your-color-here;
}
Thanks!
That worked.
Thanks a lot for the other issues also.
=)