Amaury Well-known member Oct 16, 2013 #1 I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css. Code: .navTabs .navTab.PopupClosed .navLink:hover { color: #FF6600 !important; }
I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css. Code: .navTabs .navTab.PopupClosed .navLink:hover { color: #FF6600 !important; }
Shelley Well-known member Oct 16, 2013 #2 Amaury said: I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css. Code: .navTabs .navTab.PopupClosed .navLink:hover { color: #FF6600 !important; } Click to expand... That will work in EXTRA.CSS If your wanting the modified coloured text to be the same when the menu drops then this will work also and retain that colour. Code: .navTabs .navTab.PopupClosed .navLink:hover, .navTabs .navTab.PopupOpen .navLink { color: #FF6600; } If your referring to the tabLinks (Marked forums read, Search forums, watched forums, watched threads) etc area then the following is what you want to use. Code: .navTabs .navTab.selected .tabLinks a:hover { color: #FF6600; } Last edited: Oct 16, 2013 Upvote 0 Downvote
Amaury said: I'm trying this, but it's not affecting it. I'd edit the navigation.css template directly, but I want to get it working in EXTRA.css. Code: .navTabs .navTab.PopupClosed .navLink:hover { color: #FF6600 !important; } Click to expand... That will work in EXTRA.CSS If your wanting the modified coloured text to be the same when the menu drops then this will work also and retain that colour. Code: .navTabs .navTab.PopupClosed .navLink:hover, .navTabs .navTab.PopupOpen .navLink { color: #FF6600; } If your referring to the tabLinks (Marked forums read, Search forums, watched forums, watched threads) etc area then the following is what you want to use. Code: .navTabs .navTab.selected .tabLinks a:hover { color: #FF6600; }