Strange Footer Problem

Temporary forum to obtain support for MODs/Styles while phpbb.com is down
Locked
Qhost
Registered User
Posts: 3
Joined: Mon Feb 02, 2009 6:16 pm

Strange Footer Problem

Post by Qhost »

Im using the Revolution Style

site: http://www.conworlds.co.uk/forum

The footer:

Image

Notice, how thats only like that on the index page, when you view topics/profiles/forums, its fine (http://www.conworlds.co.uk/forum/viewforum.php?f=16)


overallfooter.html:

Code: Select all

	</div>

<div id="page-footer">

	<div class="navbar">
		<div class="inner"><span class="corners-top"><span></span></span>

		<ul class="linklist">
			<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
				<!-- IF not S_IS_BOT -->
					<!-- IF S_WATCH_FORUM_LINK --><li <!-- IF S_WATCHING_FORUM -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{S_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
					<!-- IF U_WATCH_TOPIC --><li <!-- IF S_WATCHING_TOPIC -->class="icon-unsubscribe"<!-- ELSE -->class="icon-subscribe"<!-- ENDIF -->><a href="{U_WATCH_TOPIC}" title="{L_WATCH_TOPIC}">{L_WATCH_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BOOKMARK_TOPIC --><li class="icon-bookmark"><a href="{U_BOOKMARK_TOPIC}" title="{L_BOOKMARK_TOPIC}">{L_BOOKMARK_TOPIC}</a></li><!-- ENDIF -->
					<!-- IF U_BUMP_TOPIC --><li class="icon-bump"><a href="{U_BUMP_TOPIC}" title="{L_BUMP_TOPIC}">{L_BUMP_TOPIC}</a></li><!-- ENDIF -->
				<!-- ENDIF -->
			<li class="rightside"><!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a> &bull; <!-- ENDIF --><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a> &bull; <!-- ENDIF -->{S_TIMEZONE}</li>
		</ul>

		<span class="corners-bottom"><span></span></span></div>
	</div>
	
<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.

	The phpBB Group : 2006
//-->

</div>

</div>

</div>

<div id="footer-bg">

	<div class="copyright">
		Revolution Style &copy; 2007, 2008 by Semi_Deus, <a href="http://phpbbmodders.net/">phpBBModders.net</a>
		<br />Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group

        <!-- IF TRANSLATION_INFO or DEBUG_OUTPUT or U_ACP --><br /><!-- ENDIF -->
		<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
		<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
		<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
	</div>

</div>

<div>
	<a id="bottom" name="bottom" accesskey="z"></a>
	<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
</div>

</body>
</html>
I managed at one point by putting a Wrap around it to make it look normal on the index page, but then it looks smaller or strange on any other page!

User avatar
Raimon
Former Team Member
Posts: 67
Joined: Sun Mar 19, 2006 1:21 pm
Contact:

Re: Strange Footer Problem

Post by Raimon »

Search:

Code: Select all

   </div>

<div id="page-footer">
replace with:

Code: Select all

<div id="page-footer">
search:

Code: Select all

      <span class="corners-bottom"><span></span></span></div>
   </div>
after add:

Code: Select all

</div>

Qhost
Registered User
Posts: 3
Joined: Mon Feb 02, 2009 6:16 pm

Re: Strange Footer Problem

Post by Qhost »

Works great on the index page, but now on forum/topic pages:

Image

If you need me to post up any files, just ask

User avatar
Raimon
Former Team Member
Posts: 67
Joined: Sun Mar 19, 2006 1:21 pm
Contact:

Re: Strange Footer Problem

Post by Raimon »

Agh i forget something, and i see that you missing some end html tags

try the next thing ;

open overall_footer.html

search:

Code: Select all

<div id="page-footer">
replace with:

Code: Select all

   </div>

<div id="page-footer">
search:

Code: Select all

     <span class="corners-bottom"><span></span></span></div>
   </div>
</div>
replace with:

Code: Select all

     <span class="corners-bottom"><span></span></span></div>
   </div>
open overall_header.html

search:

Code: Select all

<li class="icon-members"><a href="{U_CHAT}" title="{L_CHAT_EXPLAIN}" class="icon_members">{L_CHAT}</a>
replace with:

Code: Select all

<li class="icon-members"><a href="{U_CHAT}" title="{L_CHAT_EXPLAIN}" class="icon_members">{L_CHAT}</a></li>
open chat_body.html

search:

Code: Select all

   </div>

      </div>
   <!-- IF S_CHAT -->
replace with:

Code: Select all

      </div>
   <!-- IF S_CHAT -->

Qhost
Registered User
Posts: 3
Joined: Mon Feb 02, 2009 6:16 pm

Re: Strange Footer Problem

Post by Qhost »

Thank you, it worked great. You did a great job at spotting the problem, I would never think of the chat mod had anything to do with it!

Thanks!

Locked