Viewing 2 replies - 1 through 2 (of 2 total)
  • Matt Knowles

    (@aestheticdesign)

    The structure of the page isn’t the way I would have built it, but one example is you have an outer container for the header:

    .container {
    width: 1170px;
    max-width: 1170px;
    }

    and then an inner container:

    #inner-header {
    max-width: 960px;
    position: relative;
    }

    The outer container is centered, but the smaller inner container isn’t. I’d change the outer to:

    .container {
    max-width: 960px;
    }

    You’ll have to do the same for the content and footer areas as well.

    Thread Starter scruff_design

    (@scruff_design)

    Hi Matt,
    Thanks for that, Thats worked great thanks.

    Regards
    Terry

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

The topic ‘Site alignment’ is closed to new replies.