Page 1 of 1

Helion right side bar showing on portal ?

Posted: 12. May 2012 01:41
by Altered
I am using board3 Portal 2.0.0 - Beta 1 on phpBB Version: 3.0.10 with Style Artodia: Helion listed here in the Released Styles I used the Step by Step Guide listed there and it worked great many thanks to those who have taken the time to help novice guys like me.


Here is my question.
This style has side bars on the left and right that I want to keep enabled on the board index page but not on the portal page. When I installed the portal it accomplished this perfectly with the left side bar. It hid the Helion style left side bar only on the portal page. This style by default has the right side bar hidden. When I enabled the right side bar it now shows on the portal page pushing the portal over to the left. I would like it to not show at all on the portal page like the left side bar but show in all the rest of the forum as the left still does.

Here is a link to my test forum http://ssahs.ipage.com/newafk/portal.php?style=3

Any help is greatly appreciated.

Re: Helion right side bar showing on portal ?

Posted: 12. May 2012 11:01
by archivar
additional changes:
For the right sidebar:
open: root/styles/art_helion/template/overall_footer.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<!-- INCLUDE _sidebar_right.html -->
Replace with
Tip: Replace the preceding line(s) to find with the following lines.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
   <!-- INCLUDE _sidebar_right.html -->
<!-- ENDIF -->   
Please also note the Subsequent changes in the header:
open: root/styles/art_helion/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

<div class="popup-trigger">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- IF not $S_IN_PORTAL or S_DISPLAY_PHPBB_MENU -->
Find
Tip: This may be a partial find and not the whole line.

Code: Select all

</div>
<!-- ENDIF -->

<!-- INCLUDE _top.html -->

<div class="layout-outer">
<div class="forum-wrapper">
<div class="layout-wrapper">
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.

Code: Select all

<!-- ENDIF -->