Ezilon.com - Target Your Audience, be Seen in Your Region

CSS to be used within the Table

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.

They have: 58 posts

Joined: Nov 1999

Hi,

I have defined a particular style to be used with a table for a specific section of the content. but somehow it does not seem to read the same and change the format of that particular text. This is what my style sheet reads @ the moment:

P, TD, TR, SPAN {
FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif
}

.introtext
{
font-family: Verdana;
font-color: Blue;
}

And for formatting the text i tried using :

div class
span class
p class

but none of them would change it .. so i finally came over here for help. please tell me how would this work.

Thanks a lot for the time.

- Kapil

Suzanne's picture

She has: 5,512 posts

Joined: Feb 2000

Please provide an url for the page in question. Thanks!

And just incase this is the answer:

Quote: .introtext
{
font-family: Verdana;
font-color: Blue;
}

And for formatting the text i tried using :
div class
span class
p class

You tried This is the introtext in the table? This is where an url would help -- I could see how you're using the CSS and HTML together.

Smiling Suzanne

sersun's picture

They have: 32 posts

Joined: Aug 2001

Heheh. I did that once Smiling
There is no "font-color" attribute. Try this:

.introtext
{
font-family: Verdana;
color: Blue;
}