ccs behavior

S

Steve B

Using FP 2003 I have a style sheet that when changed, all pages refelct the
update except for the font size. Pages have some individual font size
settings but each is followed with </font>. The syntex for the ccs is:
body { font-family: Tahoma; font-size: 10pt; } also tried 10px

Any ideas?

Also the default of a new page is 12pt, where can that be changed to be 10?

Thanks
 
J

Jens Peter Karlsen[FP MVP]

Physical markup will overrule your stylesheet. So remove the font
settings unless you specifically want aother size there. And in the
latter case, you should use css to specify that too.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
M

Murray

Points are for print, not web pages. Use px, ems, ens, exs, percents, or
font size names for your CSS styles.
 
Top