MyBB Community Forums

Full Version: Side Boxes! 2.0 shift to left side
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do shift boxes mod to left side

http://mods.mybboard.net/view/side-boxes!-2.0
Moved to the correct forum.
You need to go into Templates -> Modify/Delete -> Expand (your default template) -> Index Page Templates -> Index

Find:

<tr>

    <td width="75%" valign="top">{$forums}</td>

    <td width="25%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</td>

  </tr>

Then swap them around:

  <tr>

    <td width="25%" valign="top">{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}</td>

    <td width="75%" valign="top">{$forums}</td>

  </tr>

If you wanted to make the side boxes width narrower or wider just change that "25%/75%" to whatever you like Smile