Oxygen theme submenu text color for secondary menu
-
For the Oxygen theme, using CSS, I have changed the background color and the borders for the secondary menu and the submenu. I have changed the secondary menu to be capitalized instead of all caps. I changed the text color for the secondary menu but I have been unable to change the color of the submenu text. I was able to change the hover text color, though. What do I need to change to make the submenu text white?
My current CSS for the secondary menu is:
.menu-secondary li a {
background: #c98c24;
}.menu-secondary li a:hover {
background: #c98c24;
}.menu-secondary li {
border-bottom: 1px solid #FFFFFF;
}.menu-secondary li a {
color: #FFFFFF;
font-family: Arial;
font-size: .833333em;
}.menu-secondary li a {
text-transform: capitalize;
}#menu-secondary ul > ul > ul> li {
color: #FFFFFF;
}.menu-secondary ul > li > a:hover {
color: #E25035;
}The blog I need help with is: (visible only to logged in users)
-
Hi
This code should make your sub-menu text white
.menu-secondary li li a { color: #fff; }Hope this helps!
-
- The topic ‘Oxygen theme submenu text color for secondary menu’ is closed to new replies.