Skip to:
Content
Pages
Categories
Search
Top
Bottom

Moving Buddypress sidebar to the left

  • Hi,

    I have a simple BP-site and I want to move the widget sidebar from right to the left side, but I’m not sure what I have to edit. I tried to modify sidebar div in style.css but I couldn’t move it. I’m using BP default child theme. Any help would be appreciated.

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

  • Tammie Lister
    Moderator

    @karmatosed

    You’re going to have to do a few edits like this:


    div#content .padder {
    margin-left: 225px;
    }

    div#sidebar {
    float: left;
    width: 224px;
    margin-right: -226px;
    }

    div#content {
    float: right;
    width: 100%;
    }

    I couldn’t get it work. These edits will move my content div, but sidebar isn’t showing at all. Any other tips?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Moving Buddypress sidebar to the left’ is closed to new replies.
Skip to toolbar