• whitelight

    (@whitelight)


    Hi WordPress support,

    I would like to know how you can make your font size bigger, since the
    current size is slightly to small (and tiring to read) I’m new to blogging and just setup
    my new site : http://www.musicarrangerspage.com

    Hope to hear from you soon,

    With friendly greetings,
    whitelight

Viewing 1 replies (of 1 total)
  • WPyogi

    (@wpyogi)

    Font size is controlled by CSS AND the users browser. So you only have some degree of control over it. You can also set font size in various places depending on how the site is coded and what you want to do. Firebug is the best way to look at CSS and figure out what you need to change to achieve the appearance you want. At the most basic level, if you want to make all the fonts in the entire site bigger, you can change the font size percentage in the following CSS:

    body {
        background: none repeat scroll 0 0 #777777;
        color: #333333;
        font-family: Verdana,Arial,Helvetica,sans-serif;
        font-size: 100.1%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    So you could try changing the 100.1% to 101% and see how it looks. But beware that changing something like that may mess up other things.

    If you want more specific changes (i.e. only specific sections or headers or whatever) you’ll have to look at more specific CSS that applies to more specific elements.

    See this page for more info on stylingfont size.

Viewing 1 replies (of 1 total)
  • The topic ‘Fonts’ is closed to new replies.