Hyperlink color
-
Hi, I need to know how to change the color in the hyperlinks.
I want my menu to be all black, and red in a pressed hyperlink.
how do I change this?Thank you
The blog I need help with is: (visible only to logged in users)
-
If you want the menu items to be red when you hover your mouse over them, then this does that.
#menu li:hover > a { color: #CC0000; }If you want the current page menu item to be red (when someone is on that page) then you would add this.
#menu .current-menu-item > a, #menu .current-menu-ancestor > a, #menu .current_page_item > a, #menu .current_page_ancestor > a { color: #CC0000; } -
-
- The topic ‘Hyperlink color’ is closed to new replies.