html - Wordpress: Current menu item only highlights when inspector is open -
the site working on: http://www.greenvilleosaka.com/
i trying highlight current page user on, rule seen below seems disable highlight color causing link retain normal color:
.current-menu-item a:link {color:#ffffff;}
oddly enough, when inspect google chrome, changes hover color (grey) inspector matched css rules shows white (the correct color), , weirder, computed styles shows original link color (gold).
if open inspector other way walk current menu item, stays wrong color (normal, gold) inspector shows correct color (white) in both computed , matched css rules.
any appreciated!!!
(inspecting in ff firebug shows correct colors while gold)
change css from
.current-menu-item a:link {color:#ffffff;}
to
.current-menu-item {color:#ffffff;}
Comments
Post a Comment