Page 1 of 1

Portal Link Displayed Incorrectly

Posted: 6. November 2009 04:32
by Luvodicus
Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
Boardlink: http://mezrscape.com

What have you done before the problem was there?
Completely installed board3 portal

What have you already tryed to solve the problem?
attempted to edit, and remove, the portal link from the header

Description and Message
Image

current code

Code: Select all

Overall Header
<!-- IF not $S_IN_PORTAL or not S_DISPLAY_MAINMENU -->
		<div class="navbar">
			<div class="inner"><span class="corners-top"></span>

			<ul class="linklist navlinks">
				<a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong></strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>

				<li class="rightside"><a href="#" onclick="fontsizeup(); return false;" onkeypress="fontsizeup(); return false;" class="fontsize" title="{L_CHANGE_FONT_SIZE}">{L_CHANGE_FONT_SIZE}</a></li>
[/i]

Re: Portal Link Displayed Incorrectly

Posted: 6. November 2009 07:20
by Mike
As first you forget to upload theme/portal.css... try it again, and purge caches. You will see the difference ;)
And for the Link...
This is your current Code:

Code: Select all

			<ul class="linklist navlinks">
				<!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF -->
				<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>
But it should be:

Code: Select all

			<ul class="linklist navlinks">
				<li class="icon-home"><!-- IF U_PORTAL --><a href="{U_PORTAL}">{L_PORTAL}</a> &#187; <!-- ENDIF --><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a> <!-- BEGIN navlinks --> <strong>&#8249;</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></li>

Re: Portal Link Displayed Incorrectly

Posted: 12. November 2009 17:12
by Luvodicus
I heart you.. thank you SO much...

Re: Portal Link Displayed Incorrectly

Posted: 12. November 2009 18:05
by Mike
But you still havent add portal.css ;)
Try it, and you will be amazed :)