MyBB Community Forums

Full Version: Help with customizing my forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have installed sideboxes on the right side of my forum but would dearly love to have some on the left but I need to be able to put widgets into these boxes and also other various things.
To get an idea you can visit my current forum: Here (I hope you can view it.)
I also want to know if I can put pictures into my forum headings such as I have done on my current forum.
Thanks in advance for any help offered.
I guess you're doing a MyBB forum

looking to put boxes to the left or right is easy, you just have to fijarce in the code of the index (where the forums), and put in tables, to create them.

boxes can copy the template portal.

Look closely at only the code to be able to assimilate
Sorry but none of that made sense to me. I know basic html but nothing about coding. Although I am learning slowly.
Can you please put into laymans terms what I need to do. Thanks
the index is made up of the forum.

a code called {$forums}

if you put a table, for example
<table>
  <tr>
    <td> </ td>
    <td> </ td>
  </ Tr>
</ Table>
and partitioning will see that two columns, one on the left and one right.

which means that if we put as follows.
<table>
  <tr>
    <td> {$forums} </ td>
    <td> extra boxes </ td>
  </ Tr>
</ Table>
you'll notice that the left side, this forum, and the right side you can put the extra funds you require.
Thanks for your help! I appreciate it. I'll have a go and see what happens.