MySpace


koNεko



Last Updated: 12/31/2008

Send Message
Instant Message
Email to a Friend
Subscribe

Gender: Female
Status: Swinger
Age: 30
Sign: Scorpio

State: lost
Country: KE
Signup Date: 7/27/2004
Monday, February 07, 2005 

How do i change text on my page?

originally contributed by: Logan Sakai

changing your text color can be a little a tricky because of all the elements involved on your profile. CSS should be used exactly, with no errors, or it could result in not working. first start out with the style tag:
<style type="text/css"> </style>
now you will need to add whichever line you want. each line of code changes a certain element. you dont need to add every single line, just the lines with the code of the element you want to change. only add the bold faced text, the other text is just the description. and of course refer to a color chart(SEE ADDITIONAL RESOURCES SECTION) and replace 'color_code' with the appropriate six-digit color code. descriptions are from HTML Masters site.
this line will change the main body text(the text in about me, who id like to meet, comment text): table, td, p, span, li, strong, div{color:color_code;} to just change the color of your comments use td {color: color_code;} these next lines will change the headings, and other colored text: .btext {color:color_code;} ("XX's Latest Blog Entry" & "XX has XX Friends") .blacktext10 {color:color_code;}(time and date in the Comments section.) .blacktext12 {color:color_code;} ("XX is in your Extended Network") .lightbluetext8 {color:color_code;} ("General", "Music", "Heroes", etc.) .nametext {color:color_code;} This is the (name ABOVE your profile picture). .orangetext15 {color:color_code;} ("About Me", "Who I'd Like to Meet") .redbtext {color:color_code;} (XX has "XX" Friends)) .text {color:color_code;} (Name, Location, Age, etc.)) .whitetext12 {color:color_code;} ("Contacting XX", "XX's Interests" etc)) this will change the colors of the links: a:link {color:color_code;} This is the color of links) a:hover {color:color_code;} Color of link with mouse over.) a:active {color:color_code;} Color of active link.) a:visited {color:color_code;} Color of visited link.) this will change the border color of picture links: a:link img {border:1px solid color_code;} Color of image link border a:hover img {border:1px solid color_code;} Color of link with mouse over a:visited img {border:1px solid color_code;} Color of visited link