MyBB Community Forums

Full Version: A box (please read this first)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I wanna create a box like this:
http://forumpromotion.net/forum/index.php
Just go to the link, scroll a little bit and find "Text Ads"
Can you guys give me a code like that box?
please.
<table width="50%" cellpadding="6" cellspacing="1" border="0" class="tborder">
<tbody>
            <tr>
                <td class="thead" colspan="2">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['newbox_e']}.gif" id="newbox_img" class="expander" alt="[-]" title="[-]" /></div>
              <strong>Thead name</strong>
                </td>
            </tr>
        </tbody>
        <tbody style="{$collapsed['newbox_e']}" id="newbox_e">  
            <tr>
                <td class="trow1">** Content Here **</td>
            </tr>
        </tbody>
    </table>

Enter <td></td> tags as much as you like in order to disect the Box in more columns.
Thanks!
WHat do you mean
"Enter <td></td> tags as much as you like in order to disect the Box in more columns. "
Where to add it? After when?
After the ending of </td>

Edit: The above mentioned code is for collapsible boxes. If you want to add a simple box, then apply following code.

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr><td class="thead"><strong>BOX TITLE</strong></td></tr>
<tr><td class="trow1">
BOX CONTENTS
</td></tr>
</table>
No i want collapsible boxes,
Can you explain clearly how to put more colums?
And How do center it?
BUMP!! please help me i need it now.