background colour of chunk nav menu
-
I would like to change the background colour of the nave menu from grey to something else. How can I do this?
The blog I need help with is: (visible only to logged in users)
-
You mean the bg of the dropdown items. You can add this (change 123456 to the hex for the color you want):
#menu ul ul a { background-color: #123456; }By the way, settting #menu to text-align:center made the dropdown items centered too. They don’t look good, in my opinion, so instead of just the above I would suggest this:
#menu ul ul a { background-color: #123456; padding-right: 1em; text-align: right; }Add this too, to change the hover color (again replacing 456789 with the hex you want):
#menu ul ul a:hover { background-color: #456789; }
- The topic ‘background colour of chunk nav menu’ is closed to new replies.