Sections
The sections are basically just that - sections of the extended profile. They contain the data for basically all the items displayed individually. Bacause everything is linked to this class, all sections become uniform based on the section here untill additional customization,.
Quote:
.section h2
{color: #0044cc;}
Changes the font color in ALL headers.
Quote:
.section #profile,#details,#journal,#friends,#comments,#multimedia,#wishlist,#signature,#about h2
{background: url(your image url here) top left no-repeat;}
Changes the header image for all sections
Quote:
.section
{font: 8px verdana;color: #8DA9D4;background-color: #B6CAD5;background: url('myimage');border: 1px dashed #8DA9D4;}
.section h2
{color: #8DA9D4;font-size: 14px;}
font: This follows the format "(size)px (font type)". Replace (size) with the font size and (font type) with your font of choice.
color: The font color of everything in your sections.
background-color: Changes the background color of the sections.
background: Change the "myimage" in the parenthesis to an image URL to get a background image in your sections. Remove this line if you don't plan to use it. NOT RECOMMENDED.
border: Follows the format "(size)px (border style) #(color)" - replace (size) with the border width, (border style) with either "solid", "double", "dashed", or "dotted", and replace (color) with the border color.
[ .section h2 | The H2 tag is used with each tag in the sections (Wish List, About, Friends, etc.). ]
color : Changes the color of the section tags.
font-size : Changes the size of the section tags
Quote:
.section { border: 2px dotted #000; }
This puts a border around each of the sections.