Skip to:
Content
Pages
Categories
Search
Top
Bottom

Fullscreen theme and activity page

  • Hello
    I use a theme call fullscreen ( with bp template pack ) and i cannot find the right way to modify my activity page.
    Here is the link : http://ophidite.net/activity
    As you see, i cannot have my sidebar at the right of the page .
    Any clue ?

    Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • But you haven’t created any rules for sidebar so it can only sit in the flow??!!

    It looks as though #sidebar needs to be placed after your #sidebar-content element has closed as you have rules for a classic source order arrangement with #content-sidebar floated 100% width and it’s first child given a right margin to clear space for the sidebar with this arrangement #sidebar element must be flowed after the main sidebar-container closes. Then you need to actually describe sidebar ruleset that floats it left, set a width and an equal negative left margin to match the width.

    I add this to the css of my theme :

    #content-sidebar {
    float: left;
    width: 100%;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    }

    #content-sidebar .padder {
    margin-right: 350px;
    border-right: 0px solid #ddd;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    }

    and i call

    in index.php of my bp activity page

    and so you now need to follow the instructions I outlined above.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fullscreen theme and activity page’ is closed to new replies.
Skip to toolbar