billybatz9 Active member Aug 18, 2013 #1 How do you change the hover color when hovering over a persons tagged name in a post?
P Paul B XenForo moderator Staff member Aug 18, 2013 #2 EXTRA.css: Code: .thread_view .messageContent .username { color: red !important; } Oh wait, you just want hover: Code: .thread_view .messageContent .username:hover { color: blue !important; } Upvote 0 Downvote
EXTRA.css: Code: .thread_view .messageContent .username { color: red !important; } Oh wait, you just want hover: Code: .thread_view .messageContent .username:hover { color: blue !important; }
Amaury Well-known member Aug 18, 2013 #4 Brogan said: EXTRA.css: Code: .thread_view .messageContent .username { color: red !important; } Oh wait, you just want hover: Code: .thread_view .messageContent .username:hover { color: blue !important; } Click to expand... Wouldn't it be this? Code: .ugc a:hover, .ugc a:focus { color: white; } Upvote 0 Downvote
Brogan said: EXTRA.css: Code: .thread_view .messageContent .username { color: red !important; } Oh wait, you just want hover: Code: .thread_view .messageContent .username:hover { color: blue !important; } Click to expand... Wouldn't it be this? Code: .ugc a:hover, .ugc a:focus { color: white; }
billybatz9 Active member Aug 18, 2013 #5 Amaury said: Wouldn't it be this? Code: .ugc a:hover, .ugc a:focus { color: white; } Click to expand... This is what worked for me..... (what Brogan said) Code: .thread_view .messageContent .username:hover { color: blue !important; } Upvote 0 Downvote
Amaury said: Wouldn't it be this? Code: .ugc a:hover, .ugc a:focus { color: white; } Click to expand... This is what worked for me..... (what Brogan said) Code: .thread_view .messageContent .username:hover { color: blue !important; }