• Need to split a single column sidebar into two (ie. Categories and Archives side by side). Nothing fancy, just need to put the two together halfway down the sidebar.

    Thanks-

Viewing 1 replies (of 1 total)
  • Try using CSS, something like this:

    #pages, #recent-comments {
    width: 200px;
    margin: 0 0 10px 9px;
    float: left;
    }

    #recent-posts, #links, #meta {
    width: 200px;
    margin: 0 0 10px 9px;
    float: right;
    clear: right;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Split sidebar’ is closed to new replies.