Reputation:
I am having to work with wordpress to make modifications to a website. One of these modifications is to add new submenu items in my main navigation menu. I can add the items but I cannot seem change the text color to white(which is black now). I have tried all sorts of things and nothing seems to effect the 2nd level of the menu. I have added the menu item correctly . My page is located at www.holidayatyourchoice.com
Upvotes: 1
Views: 249
Reputation: 3059
You have the CSS style for the menu... You don't have it for the Sub-Menu..
Just add this into your style.css
ul.sub-menu > li > a span span {
color: rgb(255, 255, 255);
}
Enjoy
EDIT: to make the appear bold you can add font-weight: 900;
Upvotes: 1