Change font size

Change font size

by Debbie McDonald -
Number of replies: 1

Is there a way to change the font size throughout the site. I was able to change the font type but adding font size="2"  to the header.html cells does not seem to work.

I also tried to add this to the styles.php: body, td, th, li {font size="2" font-family: "Arial", Verdana, Arial, Helvetica, sans-serif; }

It does not seem to work.

Average of ratings: -
In reply to Debbie McDonald

Re: Change font size

by Przemyslaw Stencel -

styles.php is a stylesheet (css) file, only disguised as php. Therefore, font size="2" will not work (it is html-style). Instead, you should use css style declaration, such as: font-size: small;

small is one of a few possible values. Others are: larger, smaller, xx-small, x-xmall, medium, large, x-large, xx-large, and numerical values. Experiment with the different values a little to get the effect you want.

Hope this helps.