Theme: Responsive: Changing the color of main menu tabs
-
I want to know how to change the colors of the letters of the main menu tabs/ secondary menu tabs
The blog I need help with is: (visible only to logged in users)
-
Hi there, go to Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS and edit the color codes as desired. This is for the top menu, the one with the grey background. The first two rules are for the main top navigation colors (non-hover and hover) and the second for the submenus.
.menu a { color: #cc0000; } .menu a:hover { color: #ffff00; } .menu li li a { color: #0000ff } .menu li li a:hover { color: #00ff00 }For the bottom menu with the white background, add this and edit as desired. Again, the first two rules are for the top level menu items and the second two for the submenu items.
.sub-header-menu a { color: #cc0000; } .sub-header-menu a:hover { color: #8000ff; } .sub-header-menu li li a { color: #0000ff; } .sub-header-menu li li a:hover { color: #00ff00; } -
-
-
- The topic ‘Theme: Responsive: Changing the color of main menu tabs’ is closed to new replies.