MyBB Community Forums

Full Version: How do you put the Shoutbox at the top of the forum?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you put the Shoutbox at the top of the forum?

Thanks.
"The shoutbox" ?

Thats like asking how you you put the door on the house.
You should have something like {$shoutbox} in most likely your index template. Move it to wherever you want it (in that template).
(2013-03-27, 11:47 PM)Seabody Wrote: [ -> ]You should have something like {$shoutbox} in most likely your index template. Move it to wherever you want it (in that template).

Didn't work Sad
LOL...

-> What shoutbox are you using?
-> What is your Forum URL?
-> Paste your INDEX template here.
(2013-03-28, 07:10 AM)Cedric Wrote: [ -> ]LOL...

-> What shoutbox are you using?
-> What is your Forum URL?
-> Paste your INDEX template here.
MyShoutbox 1.7
http://thespeedyfeed.com/
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$forums}



{myshoutbox_abcd}
{$boardstats}

<table width="100%" class="forum_legend smalltext">
    <tr>
	<td width="37px" valign="center"><div class="icon_back"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle;" /></div></td>
	<td style="padding-left: 10px;" valign="center">{$lang->new_posts}</td>

	<td width="37px" valign="center"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle;" /></td>
	<td style="padding-left: 10px;" valign="center">{$lang->no_new_posts}</td>

	<td width="37px" valign="center"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></td>
	<td style="padding-left: 10px;" valign="center">{$lang->forum_locked}</td>
    </tr>
</table>
{$footer}
</body>
</html>
Move {myshoutbox_abcd} to above {$forums}. Smile