HTML color code is messed up? whats wrong?

Ryan D

New member
i recently just got a new layout for my myspace.. but the color of the text was only working on the right side. the left side was black text on a black background.. so i wrote a HTML code and applied it to the text on the left side of my profile.. and it made it blue.. even though they are the same color code (996666) my url is" myspace.com/air4sguy " if you wanna check it out.. if you scroll down to general and music and stuff you'll see its blue.. but the other side is brownish purply.
 
Don't use the <font> tag. Even though you specify <font color="#996666">, there is a CSS property (see below) that overrides the color attribute to the CSS-defined #386093, which is the blue color you're seeing.

CSS Font style, line 627:
font {
color:#386093;
font-size:10px;
}

If you can find a way to edit the above CSS to #996666, then it'll be the color you want for all <font> tags.

Or, perhaps easier, just use the <span> tag with the appropriate class, like on the right side.

So instead of:
<font color="#996666">
Guitars~ Drumz~ (etc etc etc)
</font>

Use:
<span class="text">
Guitars~ Drumz~ (etc etc etc)
</span>

That should fix the color problem, though I'm not really proficient on how MySpace controls its CSS. So if you have any questions about this answer, you can message me via Y!A on my profile. Good luck.
 
Don't use the <font> tag. Even though you specify <font color="#996666">, there is a CSS property (see below) that overrides the color attribute to the CSS-defined #386093, which is the blue color you're seeing.

CSS Font style, line 627:
font {
color:#386093;
font-size:10px;
}

If you can find a way to edit the above CSS to #996666, then it'll be the color you want for all <font> tags.

Or, perhaps easier, just use the <span> tag with the appropriate class, like on the right side.

So instead of:
<font color="#996666">
Guitars~ Drumz~ (etc etc etc)
</font>

Use:
<span class="text">
Guitars~ Drumz~ (etc etc etc)
</span>

That should fix the color problem, though I'm not really proficient on how MySpace controls its CSS. So if you have any questions about this answer, you can message me via Y!A on my profile. Good luck.
 
Back
Top