|
-
Jul 27th, 2003, 01:22 PM
#1
Thread Starter
yay gay
CSS help needed
i want the "regular text" of my page to have 8pt in size and to have color #696969..i've tried to put the following:
Code:
body
{
color:#696969;font-family:Verdana; font-size:8pt;
}
for the color and font it works just fine but to the font size it doesnt..what am i doing wrong?
\m/  \m/
-
Jul 27th, 2003, 02:54 PM
#2
Stuck in the 80s
Is the text inside any other tag, like span or td? I know that if you just set it to the body, and then have text within a table cell, it will control the font but not the size in IE.
Post the code around the text that isn't sizing properly and maybe we could figure it out.
-
Jul 27th, 2003, 05:54 PM
#3
Thread Starter
yay gay
ah yea its inside tag and cells! that should be the problem..ill try to fix it up
tks!
\m/  \m/
-
Jul 27th, 2003, 09:56 PM
#4
Stuck in the 80s
Usually, I just do this:
Code:
body, td
{
color:#696969;font-family:Verdana; font-size:8pt;
}
And that will set the default for the body and table elements.
-
Jul 27th, 2003, 10:00 PM
#5
Thread Starter
yay gay
\m/  \m/
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|