MyBB Community Forums

Full Version: Sidebar help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all, you helped me a lot on my first problem hope you can help me here aswell.

my forum http://tf-united.com/forum/

I added this http://community.mybb.com/thread-73062.html sidebar to my forum, and it works great, and after reading through the hole topis i still dont have a clue how to add a 2nd, 3rd and so on tab under the sidebar for more stuff like a sidebar shoutbox.

similar to my proboeards forum http://tflunited.proboards.com/ (yes yes i know i know...)


This brings me to my 2nd question how can i use a shoutbox in the sidebar, i never got any shoutbox working :/

the 3rd question is also related to the sidebar ive tryed this code

I want to show the sidebar on all subforums not just in the index and used this:

Add this to the end of your header template:
<a class="buttons" style="float: right;"></a>
 <a class="clickedbuttons" style="float: right;"></a>
 <br class="clear" />
 <div class="sidebar" style="float: right;width: 19%;">
 <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
 <tr>
 <td class="thead"><strong>
 Latest News
 </strong></td>
 </tr>
 <tr>
 <td class="trow1">
 You can put some news stuff here
 </td>
 </tr>
 </table>
 </div>
 <div class="forums" style="float: left;width: 80%;">

And this to the beginning of your footer template:

Code:
</div>

Then add this to your global.css:

Code:
.buttons {
     background: url(images/arrowright.png) no-repeat;
     width: 16px;
     height: 16px;
     display: block;
     cursor: pointer;
 }
 
 .clickedbuttons {
     background: url(images/arrowleft.png) no-repeat;
     width: 16px;
     height: 16px;
     display: block;
     cursor: pointer;
 }



and a lot of weird stuff happened, like a 2nd sidebar next of the first one oO
Weird i just cant get it to work...

Ok i got me a 2nd tab with copy/pasting this code line

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>
TEXT
</strong></td>
</tr>
<tr>
<td class="trow1">	
TEXT
</td>
</tr>
</table>

But how can i insert a shoutbox inside it?