CSS 'font' tag problem?

laksh_khamesra

New Member
eatmelures (dot) softgenext (dot) com/untitled(dot)html
eatmelures (dot) softgenext (dot) com/untitled(dot)php
eatmelures (dot) softgenext (dot) com/fullsite(dot)css

These r the three files.....one containing css ..... one php file with some text which is linked to that css file...n he body tag formatting done in the css file is affecting the php file's body but that font tag modifications done in that css file r not getting applied on the text in the php file.....same prob with the html file too .....
i want to make a site in which i want verana 36 size for all the text automatically......how to do that....????
 

jnjc

New Member
you should have the font setting within the body style of your css like this:

body {
text-align: center;
margin: 0px;
width: 1001px;
font-family: Verdana;
font-size: 36px;

}

HTH,
JC
 
Top