MyBB Community Forums

Full Version: Now a responsive theme - BootBB
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I now have used two themes that were not suited for mobile user.
I now have installed BootBB and yes, mobile users will love this theme.

But now I have a question, how to adjust the AdvancedSidebox for use in BootBB?
AdvancedSidebox is not compatible with BootBB. A side box would interfere with Responsive themes and will not allow the theme to shrink correctly on mobile screens. There is just no space for a sidebox on narrow mobile screens.
@panayot - the sidebar when in use was in the settings disabled for mobile user.
This because I know that it is foolish to let mobile phone users use the sidebar.

I really hope someone has a solution.
Yes, it is possible to have a sidebar to be responsive. I have written a sample code for you using bootstrap columns and grid layout.
Since you are using BootBB which essentially consists of Bootstrap, I would suggest you use bootstrap grids and control the screen aspects using Bootstrap Grid. Here is a mockup of the index and sidebar using bootstrap grid.
<div class="container">
  <div class="row justify-content-md-center">
    <div class="col-md-auto">
      Index forums go here
    </div>
    <div class="col col-lg-2">
      Sidebar Goes Here
    </div>
  </div>

Replace "sidebar" with sidebar code and "Index forums go here" with Forums.
Learn more about Grid here -
https://getbootstrap.com/docs/4.1/layout/grid/

Regards
WallBB