• if you check out brandamgblog.com you can see what I’m talking about. The space below the header is way too big for my taste. does anyone know how I can move the body up?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Look for #content in your css and add this:


    margin-top: -20px;

    The – can be increased or decreased to your liking.

    Thread Starter waynertrain

    (@waynertrain)

    I see where I put the code, but there are multiple sections beginning with #content. Where do I put “margin-top: -20px;” line in the lines below?

    #content {
    margin: 1em 215px 1.5em 15px;
    font-size: 1.1em;
    }

    #content h2 {
    font: italic 2.1em georgia, serif;
    margin: 5px 0;
    letter-spacing: 1px;
    }

    #content h2 a {
    text-decoration: none;
    }

    #content h3 {
    padding: 0 0 0 17px;
    margin: .5em 0;
    font-size: 1.4em;
    }

    #content h4 {
    font-size: 1.3em;
    padding: 0;
    margin: 1em 0;
    }

    #content h5 {
    font-size: 1.1em;
    padding: 0;
    margin: 1em 0;
    }

    #content .date {
    font-size: 1em;
    text-align: right;
    font-weight: bold;
    }

    #content .meta {
    font-size: .9em;
    }

    #content .feedback {
    margin: 15px 0 15px 0;
    text-align: right;
    padding-bottom: 10px;
    border-bottom: 1px solid #700000;
    }

    The 1st instance.

    Thread Starter waynertrain

    (@waynertrain)

    that worked! thank you. how do I do the same thing for the sidebar?

    Look for this:

    #navi-innen {
    padding: 0 15px 10px 15px;

    }

    and add the same as you did with the content.

    Thread Starter waynertrain

    (@waynertrain)

    I put the code in (you can see it below) but it isn’t adjusting the space like it did for the content. Did I do it right?

    #navi-innen {
    padding: 0 15px 10px 15px;
    margin-top: -50px;
    }

    Thread Starter waynertrain

    (@waynertrain)

    I have tried messing around with it more and still cannot get it to work. Any help would be appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to move body up on page?’ is closed to new replies.