• Resolved mezzoforte

    (@mezzoforte)


    I don’t want any space at all above the header (and not any space below the footer either). But I can’t find anywhere in the css where it says there will be space above the header and below the footer. By the way, I want it the way it is here at www.ads-software.com. Can anyone help me? Here’s the site: realillusions.info

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

    (@sumeetjain)

    Add the following to the CSS for body {

    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;

    Your css is mixed up and this is only one error. You have two #page and this second one is the one with the margin;

    #page {
    background-color: white;
    margin: 20px auto;
    padding: 0;
    width: 750px;
    border: 1px solid #959596;
    }

    You need to clean up the css to help prevent any other issues.

    Thread Starter mezzoforte

    (@mezzoforte)

    Thanks! The reason I’ve more than one of several things is that the Kubrick theme was like that from the beginning, though I have mixed it even more myself probably…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No space between header and browser window edge’ is closed to new replies.