MyBB Community Forums

Full Version: Box near forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi to all,
how can i put boxes near forums? HuhHuhHuh
please don't say me "Use sideboxes plugin", I want to work without plugin Wink
I tried some codes without success Wink
You could just manually code boxes into the index template...?? If you want dynamic content though you'll have to have a plugin of some sort...
@Joshua Mayer, I read that topic and you can see my post: http://community.mybboard.net/thread-491...#pid360619
That modification create a table above the forums instead I want the situation you can see in attachment Angel
Just normal HTML. In your index template, find {$forums}, replace with:

<table width="100%"  border="0">
  <tr>
    <td width="25%" valign="top">BOX CODE HERE</td>
    <td width="75%" valign="top">{$forums}</td>
  </tr>
</table>
No, it is not so simple Big Grin because i want the border and if I put border it will there be also for forums....
It is Smile Just do more tables in the BOX CODE HERE part using the normal format for creating tables.
I tried so:
<table width="100%" border="0">

<tr>

<td width="25%" valign="top"><table width="30%" border="1">prova123</table></td>
<td width="75%" valign="top">{$forums}</td>
</tr>

</table>
but it doesn't work, there isn't the table Undecided