Sidebar widget showing up at bottom

  • Unknown's avatar

    I flipped the sidebar from right to left in Twenty Ten using the CSS code below, and now the Primary Widget Area (with the Search widget) is showing up at the bottom instead of the top. What’s going on?

    Site is mercermilling.com. Thanks!

    /* LAYOUT: Two columns-reversed
    DESCRIPTION: Two-column fixed layout with one sidebar LEFT of content */
    #container {
    float: right;
    width: 100%;
    margin: 0 0 0 -24px;
    padding: 1em 0;
    }

    #content {
    margin: 0 20px 0 280px;
    }

    #primary,#secondary {
    float: left;
    overflow: hidden;
    width: 220px;
    }

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Never mind, I think I figured it out:

    /* LAYOUT: Two columns-reversed
    DESCRIPTION: Two-column fixed layout with one sidebar LEFT of content */

    #container {
    float: right;
    width: 100%;
    width: 100%;
    }
    #content {
    margin: 0 280px 0 20px;
    }
    #primary,#secondary {
    float: left;
    clear: left;
    margin-left: 10px;
    }

  • The topic ‘Sidebar widget showing up at bottom’ is closed to new replies.