Page Tab Hover Color
-
Hey guys,
I was wondering how I could change the color for when I hover over the tabs for each page from orange to white. Also, I want the text to turn black when the hover background is white.The blog I need help with is: (visible only to logged in users)
-
Hi there, in your custom CSS, remove this rule
.navigation-main a:hover { border-right: 1px solid #000000; color: #FFFFFF; display: block; padding: 25px; }and replace it with this rule
.navigation-main li:hover > a { background: #FFFFFF; border-right: 1px solid #000000; color: #000000; display: block; padding: 25px; }
- The topic ‘Page Tab Hover Color’ is closed to new replies.