TeamPhotoshop
Reviews, updates and in depth guides to your favourite mobile games - AppGamer.com
Forum Home Latest Posts Search Help Subscribe

*insults self* need css help again

Page: 1 Reply
Oct 21st 2001#18947 Report
Member since: Mar 20th 2001
Posts: 319
i have tried many variations of this, but i just cannot figure out how to define the text size using CSS. but wait! before you all start telling me to look at others' source code and search on Google, ill have you know that ive done that already. Please help me out! thanks. :D
Reply with Quote Reply
Oct 22nd 2001#18951 Report
Member since: Jun 30th 2001
Posts: 447
Here's what you can use for all body text:
[code]body {
font-family:Arial, Helvetica, Sans-Serif;
font-size:10pt;
color:#000000;
}[/code]

And for all code in a table:
[code]td {
font-family:Arial, Helvetica, Sans-Serif;
font-size:10pt;
color:#000000;
}[/code]

With what I've given you you should be able to figure out how to create custom styles.
Reply with Quote Reply
Oct 22nd 2001#18960 Report
Member since: Mar 20th 2001
Posts: 319
Ohhhh, ok. I didn't know you had to put "td" there. Well, thanks a lot andrew, much obliged! :D
Reply with Quote Reply
Oct 23rd 2001#19026 Report
Member since: Jun 30th 2001
Posts: 447
You don't have to use the "td" one at all, but I figure you'll be using tables which is why I included it. It could be "p" for paragraphs, etc.
Reply with Quote Reply
Page: 1 Back to top
Please login or register above to post in this forum