change color in main navigation
-
Hi,
I would like to change the color in main navigation field. i tried myself but nothing happens.
The blog I need help with is: (visible only to logged in users)
-
Good day,
What color are you trying to change to?
By the main navigation field, you mean the orange navigation menu with the (Home, About Us, Menu, Contact)?
If you have WordPress Premium or WordPress Business, you can easily change the color using CSS code.
-
-
Following up for drunkentennis here.
You can use the below code to change the background of that menu.
#masthead .stick { background-color: #000000; }You can replace “000000” with hex code of any color of your choice.
To change the color of the text on that menu, you can use the below code. You can replace “ffffff” with hex code of any color of your choice.
.main-navigation a { color: #ffffff; }Hope this helps. Let us know if you have questions.
-
-
- The topic ‘change color in main navigation’ is closed to new replies.