• Hello,
    I am customizing the 2010 Weaver theme and have run into a little problem with the left margin as I choose a page with the “one-column, no sidebar” template vs a 2 column template. My left margin in in about 50px while my 2 column has about 20px. How can I change the “one-column, no sidebar” to 20px?
    ps- I took away the padding from the wrapper. My layout code looks like this:

    /*
    LAYOUT: Two columns
    DESCRIPTION: Two-column fixed layout with one sidebar right of content
    */
    
    #container {
        float: left;
        margin: 0 -240px 0 0;
        width: 100%;
    }
    #content {
        margin: 0 280px 0 50px;
    }
    #primary,
    #secondary {
        float: right;
        overflow: hidden;
        width: 220px;
    }
    #secondary {
        clear: right;
    }
    #footer {
        clear: both;
        width: 100%;
    }
    
    /*
    LAYOUT: One column, no sidebar
    DESCRIPTION: One centered column with no sidebar
    */
    
    .one-column #content {
        width: 100%;
        margin: 0 20px 0 20px;
    }
Viewing 1 replies (of 1 total)
  • The .one-column rule is for the page template when you create a new page. If that is what you are using for your one-column pages, then just adjusting the .one-column rule should fix it.

    If you’ve instead used the Main Options sidebars setting, you would need to adjust the #container, #main, and/or #content rules – there are more details on this in the snippets.

Viewing 1 replies (of 1 total)
  • The topic ‘Margins different in one-column and 2 column template 2010 Weaver’ is closed to new replies.