MyBB Community Forums

Full Version: footer problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,
i didn't manage to find proper topic so i start new.
Today i noticed a prob with the footer in my forum.
Here is the image and the index code (saw others copy the code).
I really need assistance with this one, what to change in the code?

<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}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" width="100%" class="tborder">
<thead>
{$shoutbox}
{$forums}
{$boardstats}






<dl class="forum_legend smalltext">

	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;"/></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
</body>
</html>

{$footer}


Thanks in advance
Link to forum?
What kidn of problem?
Smile
It would be more logical to see the footer this way :

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

Something or someone must have change your code...
No, he just sourced his index page. We need to see your footer templaet.
I think exdiogene just stated that he was calling the footer template on the wrong place on his index template. That's probably the issue (although I didn't get the OP at all)
Thank you combus for explaining! Wink
Oh yea, i missed that lol.
(2010-01-07, 03:09 AM)exdiogene Wrote: [ -> ]It would be more logical to see the footer this way :

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

Something or someone must have change your code...

Solved.
Thanks very much. Didn't notice the wrong end of the code. Smile