« Back to the HTML Forum

How do i make all the text in my profile white?

Posted by Jade

posted

Forum: HTML Group

I'm having a hard time making the text in my profile entirely white (black background + black text =no) but the code I'm using isn't working.

<style>body{color: COLOR !important;}</style> 

I used that code (from off the HTML ultimate guide) and it only changed the color of the text on the footer! 


any ideas ??

(side question: how do I make the width of my main profile page smaller?)

Thank u <3!!


Report Topic

2 Replies

Sort Replies:

Reply by Cxndy

posted

For normal text (the text in about me, who I'd like to meet, in interests)

p{

  color: white;

}


For headers (your name, "user's blurbs", General interests)

h1, h2, h3, h4, h5{

  color: white;

}


For links 

a {

  color: white;

}

For when you hover over links 

nav .links a:hover, nav .links .special a: hover, a:hover {

color: white;

}


I think that's all of them! Try these! I hope they work (they work for me)


Permalink Report Reply

Reply by nago

posted

here's the actual code sweetie:

<style>

body{color: white !important;}

h1, h2, h3, h4, h5{color: white !important;}

a, .links a{color: white !important;}

.mood p{color: white !important;}

.url-info{color: white !important;}

.friends b{color: white !important;}

.blog-preview{color: white !important;}

.friends p, .count{color: white !important;}

.table-section td{color: white !important;}

main{color: white !important;}

</style>


Permalink Report Reply