• Resolved dfhscout

    (@dfhscout)


    Hi everybody!

    Im a brand new user of wordpress and would like to ask some help if possible.

    So i got a 2 sidebar theme, at the moment the first column is the posts the second is sidebar1 and the third is sidebar2. I would like to have the sidebars on the left and right side and the posts in the middle if its possible and not very difficult.

    my site is: http://purplesolarenergy.co.uk

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You will need to modify the layout and css.

    Currently the layout looks;

    <div class="column-right">
    <div class="widget-left">...</div>
    <div class="widget-right">...</div>
    </div>
    <div class="column-center">...</div>

    You will need to change this layout to something like;

    <div class="column-right">...</div>
    <div class="column-center">...</div>
    <div class="widget-left">...</div>

    And also change the css of column-right, column-center and widget-left to something like;

    .column-right {
        float: left;
        margin: 0 22px 0 0;
        width: 228px;
    }
    .column-center {
        float: left;
        height: 100%;
        overflow: hidden;
        padding: 0 0 15px;
        width: 457px;
    }
    .widget-left {
        float: right;
        margin: 0 0 0 10px;
        width: 225px;
    }

    You will need to adjust the css a bit more to match how you wanted to display.

    Thread Starter dfhscout

    (@dfhscout)

    Thank you very much! It was very helpful, its looks alright!

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

The topic ‘Positioning 2 Sidebar Theme’ is closed to new replies.