• my site is http://www.expensiveselling.com

    I want to make my h1, h2 and h3 bigger, but there is not enough space between the lines and the words overlap.

    Can someone show me how to increase the font size of all of my fonts and also how to increase the space between header lines?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try editing style.css and changing:

    h1, h2, h3 {
    font-family:Georgia,'Trebuchet MS','Lucida Grande',Verdana,Arial,Serif;
    font-weight:bold;
    }
    h1 {
    font-size: 2em;
    text-align: center;
    }
    h2 {font-size:1.6em;}
    h3 {font-size:1.3em;}

    to

    h1, h2, h3 {
    font-family:Georgia,'Trebuchet MS','Lucida Grande',Verdana,Arial,Serif;
    font-weight:bold;
    line-height:1em;
    }
    h1 {
    font-size: 2.5em;
    text-align: center;
    }
    h2 {font-size:2em;}
    h3 {font-size:1.6em;}
    Thread Starter robj4

    (@robj4)

    Thankyou – you are a legend!

    Also, how do I increase the regular paragraph font?

    Regards,

    Robert Coorey

    Edit sryle.css and change:

    .post {
    text-align:justify;
    }

    to

    .post {
    font-size:1.1em;
    text-align:justify;
    }

    That may increase the font size of some of your headings, so you may then need to go back and reduce some of the settings that I suggested earlier. Just drop them down 1 or 2 decimal points.

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

The topic ‘Kubrick Header Fonts’ is closed to new replies.