This is for medium to advanced users. To edit your profile, you need to know some basic CSS. We do not cover that here. We just list all the class names for each element.
For example, if you wanted to change the colour (color from now on, for you American guys!) of your name on your myspace profile, you look on this page for the appropriate section. Then copy and paste it into your About me (or whereever you put your style information, on your profile) CSS section (or make a new one, by putting <style type="text/css"> [...your css code...] </style>).
The default values are pasted here as well
This is your name, above your picture
.nametext {
font-family:verdana,arial,sans-serif,helvetica;
font-size:12pt;
color:#000000;
font-weight:bold;
}
The "WHOEVER is in your Extended Network" bit
.blacktext12{
font-family:verdana,arial,sans-serif,helvetica;
font-size:12pt;
color:#000000;
font-weight:bold;
}
The "WHOEVER is in your Extended Network" bit
.orangetext15{
font-family:verdana,arial,sans-serif,helvetica;
font-size:9pt;
color:#FF6600;
font-weight:bold;
}
This is the code on your myspace profile that defines the "Your Details" box
.lightbluetext8{
font-family:verdana,arial,sans-serif,helvetica;
font-size:8pt;
color:#336699;
font-weight:bold;
}
This is where Add Me, Send Message, Block etc is.
.contactTable {
}
This will change the style of the dates shown, from your comments
.blacktext10{
font-family:verdana,arial,sans-serif,helvetica;
font-size:10pt;
color:#000000;
font-weight:bold;
}
This will cover the majority of the links on your Myspace Profile. Comments about this are behind "//".
a:link{ //Just your regular link
color:#003399;
}
a:active{ //Once you have clicked it and are waiting for it to load
color:#003399;
}
a:visited{ //A link to a page you have already been to
color:#003399;
}
a:hover{ // When you have your cursor over the link
color:#cc0000;
}