MyBB Community Forums

Full Version: Problem With Footer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am having an issue with the footer one the thread pages:
http://www.aiowebmaster.com/showthread.php?tid=4

But it is working normal on all the other pages:
http://www.aiowebmaster.com/forumdisplay...=37&page=1

The bottom image under "Return To Content" and "Return To Top" is not aligned and some of the images/css looks off at the bottom left navigation.

Here is the code for the Footer Template:

<div class="clear"></div>
<a href="#top" class="top_icon">{$lang->bottomlinks_returntop}</a><a href="#content" class="content_icon">{$lang->bottomlinks_returncontent}</a>
<div class="clear"></div>
</div>
		<div class="footer_main"></div>
	</div>
</div></div>
<div id="footer">
	<div class="mainwrap">
<div class="footer_menu">
		<h2>Quick Navigation</h2>
		<ul>
			<li><a href="{$mybb->settings['homeurl']}" class="bot_home">{$mybb->settings['homename']}</a></li>
			<li><a href="{$mybb->settings['contactlink']}" class="bot_contact">{$lang->bottomlinks_contactus}</a></li>
			<li><a href="<archive_url>" class="bot_archive">{$lang->bottomlinks_litemode}</a></li>
			<li><a href="{$mybb->settings['bburl']}/misc.php?action=syndication" class="bot_rss">{$lang->bottomlinks_syndication}</a></li>
		</ul>
</div>
<div class="footer_content">
			<br />
			<p>All content &copy; copyright {$mybb->settings['homename']}.</p>
			<br /><br />
			<!-- MyBB is free software developed and maintained by a volunteer community. 
				It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact, 
				to show your support for MyBB.  If you choose to remove or modify the copyright below, 
				you may be refused support on the MyBB Community Forums.
					 
				This is free software, support us and we'll support you. -->
				{$lang->powered_by} <a href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://mybb.com/" target="_blank">MyBB Group</a>.
				<!-- End powered by -->
<div class="float_right">{$lang_select}</div><br />
Theme designed by <a href="http://www.audentio.com" title="Free MyBB Themes">Audentio Design</a>.

</div>
<div class="clear"></div>
		<!-- <div id="debug"><debugstuff></div> -->
		<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
		{$auto_dst_detection}
	</div>
</div>

And here is the code for the Show Thread Template:

<html>
<head>
<title>{$thread['subject']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	var quickdelete_confirm = "{$lang->quickdelete_confirm}";
// -->
</script>
<script type="text/javascript" src="jscripts/thread.js?ver=1400"></script>
</head>
<body>
	{$header}
	{$pollbox}
	<div class="float_left">
		{$multipage}

	</div>
	<div class="float_right">
		{$newreply}
	</div>
	{$ratethread}
<div class="clear"></div>
<div class="thead_main"><div class="thead_left"><div class="thead_right"><div class="thead_text">
				<div style="float: right;">
					<span class="smalltext"><strong><a href="showthread.php?mode=threaded&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->threaded}</a> | <a href="showthread.php?mode=linear&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->linear}</a></strong></span>
				</div>
				<div>
					<strong>{$thread['displayprefix']}{$thread['subject']}</strong>
				</div>
</div></div></div></div>
	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;">
		{$classic_header}
	</table>
	<div id="posts">
		{$posts}
	</div>
	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="border-top-width: 0;">
		<tr>
			<td colspan="2" class="tfoot">
				{$search_thread}
				<div>
					<strong>&laquo; <a href="{$next_oldest_link}">{$lang->next_oldest}</a> | <a href="{$next_newest_link}">{$lang->next_newest}</a> &raquo;</strong>
				</div>
			</td>
		</tr>
	</table>
<div class="tfoot_main"><div class="tfoot_left"><div class="tfoot_right"></div></div></div>
	<div class="float_left">
		{$multipage}
	</div>
	<div style="padding-top: 4px;" class="float_right">
		{$newreply}
	</div>
	<br style="clear: both;" />
	{$quickreply}
	{$threadexbox}
	{$similarthreads}
	<br />
	<div class="float_left">
		<ul class="thread_tools">
			<li class="printable"><a href="printthread.php?tid={$tid}">{$lang->view_printable}</a></li>
			<li class="sendthread"><a href="sendthread.php?tid={$tid}">{$lang->send_thread}</a></li>
			<li class="subscription_{$add_remove_subscription}"><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;tid={$tid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a></li>
		</ul>
	</div>

	<div class="float_right" style="text-align: right;">
		{$moderationoptions}
		{$forumjump}
	</div>
	<br style="clear: both;" />
	{$usersbrowsing}
	{$footer}
</body>
</html>

Any help would be greatly appreciated. Thanks for your time.
Its fine here. You probably are viewing two different page, i.e. forumdisplay and showthread. FYI both templates are quite different at bottom.
Yes that is correct.

The first link in for a post and the second is for the forum display. However, I am using I can't figure out why the footer is messing up in the post display.
The problem with the footer was a result of the Rate Post plugin, I disabled it and everything went back to being perfect Wink