I was just about to make a post about the userpic background! You beat me by a minute. :) My border is smaller but still...it's pretty ugly when you have a dark background.
.user-icon { background-color: #000; )However, this code will not affect the friends page icon background because the styling is inline. You will need to change the hard coded style in your layer:
Change this:
To this:
background-color: #000000;">Alternatively, remove the hard coded style from the DIV and add it to the CSS:
Comments 6
Reply
/* subject font size */
.page-header2 {
font-size : 30px;
}
/* friends page icon background */
.user-icon {
background-color: #000;
)However, this code will not affect the friends page icon background because the styling is inline. You will need to change the hard coded style in your layer:
Change this:
To this:
background-color: #000000;">Alternatively, remove the hard coded style from the DIV and add it to the CSS:
/* friends page icon background */
.user-icon {
border : 1px;
padding : 2px;
background-color: #000;
)
Reply
Reply
Reply
.user-icon, .user-icon a{
background:#000000 !important;
color:#ffffff !important;
}
The !important overwrites the hard coded color in the style
Reply
Reply
Leave a comment