Problem with userpics on flist [SOLVED]

Dec 25, 2012 09:54

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... )

entry usericon and username, solved, paid accounts

Leave a comment

Comments 3

london_fan December 25 2012, 21:59:32 UTC
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, .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

dreadfulpenny81 December 26 2012, 07:05:27 UTC
This is brilliant and exactly what I needed. Thank you so much!

Reply

london_fan December 26 2012, 15:31:55 UTC
You're welcome! Glad I could help! :)

Reply


Leave a comment

Up