I have a paid account (primarily using Firefox) and I'm using the Very Plain Layout by carver. I would ask them myself how to change it but as you can see, the account no longer exists
( Read more... )
I'll give you some code for white usernames that aren't underlined in general (just add it to the code you already use). This code also provides all possibilities you asked for: a) changing the link color upon hovering (without the "blacking out"), b) underlining the link upon hovering or c) a combination of both:
.userpic font:hover, .userpicfriends font:hover defines the color of the text itself, whereas the color setting in div.userpic a:hover, div.userpicfriends a:
( ... )
Comments 3
a) changing the link color upon hovering (without the "blacking out"),
b) underlining the link upon hovering or
c) a combination of both:
.userpic font, .userpicfriends font {
color: #ffffff !important;
background-color: transparent !important;
}
div.userpic a, div.userpic a:link, div.userpic a:visited, div.userpicfriends a, div.userpicfriends a:link, div.userpicfriends a:visited {
text-decoration: none !important;
}
.userpic font:hover, .userpicfriends font:hover {
color: #ff0000 !important;
background-color: transparent !important;
}
div.userpic a:hover, div.userpicfriends a:hover {
text-decoration: underline !important;
color: #ff0000 !important;
background-color: transparent !important;
}
.userpic font:hover, .userpicfriends font:hover defines the color of the text itself, whereas the color setting in div.userpic a:hover, div.userpicfriends a: ( ... )
Reply
Reply
Reply
Leave a comment