• Resolved bbrody

    (@bbrody)


    I want to change the width of k2 so that it is centered like the pic I’ve posted on this page

    As you can see my current page width spans entire screen and looks too “empty” (imo).

    How can I center/change the width of my site?

    Also how do I space/or pad the Headline text more? The headline text is too close together (vertically) making it hard to read. (link to page above)

    Here’s a link to the k2 style css file I’m using. here

    I don’t have much experience with code so the more detailed the better.
    Any and all help is appreciated =)

Viewing 2 replies - 1 through 2 (of 2 total)
  • How can I center/change the width of my site?

    You could try editing style.css and changing:

    .content {
    padding:0 20px 10px;
    }

    to

    .content {
    margin:0 auto;
    padding:0 20px 10px;
    width:80%;
    }

    how do I space/or pad the Headline text more?

    Try adding:

    .entry-content h2 {line-height:1em;}

    to the bottom of style.css

    Thread Starter bbrody

    (@bbrody)

    Yes! Thank you Esmi

    It worked like a charm =)

    I notice you respond to alot of post’s.
    What goes around comes back around, thank you.

    Somethin so simple like this could have taken me days to figure out.

    Thanks again for helping me get my blog up much faster.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing K2 width (make it centered?)’ is closed to new replies.