View Full Version : Text coloring changes


Limei
08-11-2004, 10:33 PM
I used a css code to change the font in my webpage.

I tried using:
<font color="#25AD3D">Your text goes here</font>
But it didn't change the color.

What is the code to change the color of text in a certain area?

bourdelson
08-11-2004, 10:35 PM
If you're using CSS, then put this into the body portion of the style sheet...

color:#25AD3D;

Limei
08-11-2004, 10:40 PM
I don't get how to do it.

bourdelson
08-11-2004, 10:43 PM
<style type="text/css">
body {color:#25AD3D;}
</style>

Goes between your head tags.

http://www.lissaexplains.com/css.shtml

pb&j
08-12-2004, 03:50 AM
I used a css code to change the font in my webpage.

I tried using:
<font color="#25AD3D">Your text goes here</font>
But it didn't change the color.

What is the code to change the color of text in a certain area?

just want it in a certain area? that font tag should work. try using the css version....

<span style="color:#25ad3d;"> your text goes here </span>