Subject Customization and Weird Friends Page Stuff

Oct 03, 2006 20:25

This is my first experience with CSS and I'm pretty dang proud of myself. I just have two problems..

Screenshot here )

entries:header:font, entries:header, entries:user icons, pageviews:friends

Leave a comment

Comments 6

transientmind October 4 2006, 03:29:10 UTC
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.

Reply


redwolf October 4 2006, 07:53:15 UTC
Try:

/* 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


av8rmike October 4 2006, 12:14:50 UTC
Go to Customize->Custom Options, the Colors page, and change "Use friends' colors on Friends Page" to "no".

Reply

transientmind October 4 2006, 14:01:36 UTC
Ah, I forgot that was a style setting; I thought it was an account setting. Stupidly simple! :P Thanks.

Reply


babyelefant October 4 2006, 13:28:05 UTC
You can just add:

.user-icon, .user-icon a{
background:#000000 !important;
color:#ffffff !important;
}

The !important overwrites the hard coded color in the style

Reply


tally_kat October 4 2006, 21:44:12 UTC
Thanks so much everyone ^_^ That helped a lot.

Reply


Leave a comment

Up