Viewing 2 replies - 1 through 2 (of 2 total)
  • what do you mean with

    i’ve tried changing the font sizes but they don’t seem to change….

    All font sizes reflect the font-size from style.css if you want to change it in your css:
    If you want larger text just change font-size: 7px; to something like font-size: 12px;

    if you want to change it with a font-size menu in your browser: better don’t use asolute font-size in pixels.

    You could use font-size=75% for your body and set other font-sizes relative in em units to that e.g. h1 { font-size: 2em }

    mikeyherbert

    (@mikeyherbert)

    You possibly had the same problem as me, if you want to change the font size of the posts at least. These are controlled by the p declaration rather than body.

    Think I’d add something like this to your style sheet to see if it solves the problem:

    p{
    	font-family: Arial, Sans-Serif;
    	font-size: 14px;
    	font-weight: normal;
    }

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘help with changing font, tried style.css’ is closed to new replies.