Page 1 of 1

CSS

Posted: Mon 11. Sep 2006, 10:18
by ancerick
So im having little problems with css thats what i got for my content:

h1 {
font-family: sans-serif;
font-size: 24px;
}

Soo.. it makes it in Bold .. but id like to have it on regular.
im realy new to this stuff, so if anybody has a good toutorial/site about CSS id be werry happy :)

Posted: Mon 11. Sep 2006, 10:24
by cyrano
Hi ancerick,

you can set additional code for css:

h1 {
font-family: sans-serif;
font-size: 24px;
font-weight: normal; (other values are bold, italic)
}

Have also a look here:
http://www.phpwcms.de/forum/viewtopic.php?p=51815#51815

And helpfull are also books to read how to handle the browsers as well.

Posted: Mon 11. Sep 2006, 10:28
by ancerick
WooT :D

i tryed it with font-style not weight.. it works now ty ^^