MyBB Community Forums

Full Version: move the forum bar on top of category
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
@LeX, ever heard of calming down?

@Audentio, alright thanks! I'll tell you what happens.

EDIT: I couldn't find the $forumbits on the index...here is my index coding

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<sf_shoutbox>
{$forums}
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
	<tr>
		<tbody>

<tr>
<td align="left"><img src="{$theme['imgdir']}/cat_l.gif" alt="" border="0"></td>
<td style="background: url({$theme['imgdir']}/cat_tbg.gif) repeat-x" align="center" width="100%"><div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['boardstats']}.gif" id="boardstats_img" class="expander" alt="[-]" /></div>
<span class="thead"><div style="text-align: left;"><strong><a href="stats.php">{$lang->boardstats}</a></strong></div></span>
</td>
<td align="right"><img src="{$theme['imgdir']}/cat_r.gif" alt="" border="0"></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tbody style="" id="boardstats_e">
{$whosonline}
{$birthdays}
{$forumstats}
</tbody>
</table>
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
	<tr>
		<tbody>

<tr>
<td align="left"><img src="{$theme['imgdir']}/cat_lb.gif" alt="" border="0"></td>
<td style="background: url({$theme['imgdir']}/cat_tbgb.gif) repeat-x" align="center" width="100%">
</td>
<td align="right"><img src="{$theme['imgdir']}/cat_rb.gif" alt="" border="0"></td>
</tr>
</tbody>
</table>
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">

{$footer}
</body>
</html>

I am using the theme BusinessBlue by FirefoxWiz. Where should I put the coding? I can't find $forumbits in there.
{$forums} is what I meant, sorry. I was thinking of a different software.
Ok everything worked and I got it the way I wanted it to be but look how this isn't aligned

http://i20.tinypic.com/16jlbfb.jpg

How do I fix that?
Add width="xx" to each table definition in forumbit_level2_forum I think its called.

Replace xx with a width in pixels or percentage for how thick you want each td to be.
there is no forumbit_level2_forum

EDIT: ok so I figured out how to do that but look how this looks

http://i24.tinypic.com/xnubr9.jpg

how do i make it so that there is space between the forums and the board statistics?
Add a break under the table you have around $forums on the index template.

break as in <br />
It isn't working...is there another way?
Pages: 1 2