CSS to be used within the Table

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,507 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;
}

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.