Sorry for the dumb question Mike but where should this code go please?
Thanks in advance
MT
black_pearl
-
- Portal Professional
- Posts: 1959
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: black_pearl
Hi,
open: styles/black_pearl/template/portal/_block_config.html
replace with:
V.G. archivar
sorry for my bad english
sorry for my bad english
-
Topic author - Active Member
- Posts: 17
- Joined: 2. December 2010 02:29
- phpBB.com User: MadTaffy
Re: black_pearl
Thanks for the prompt reply archivar
-
Topic author - Active Member
- Posts: 17
- Joined: 2. December 2010 02:29
- phpBB.com User: MadTaffy
Re: black_pearl
Wonder if you could help me out with something else,
I was hoping this would sort out the portal link on the board index page but unfortunately i haven't got a portal tab like in the demo,
Any pointers would be much appreciated
Portal link: http://ubermpower.co.uk/uberv2/portal.php?style=3
Board index link: http://ubermpower.co.uk/uberv2/index.php?style=3
Cheers MT
I was hoping this would sort out the portal link on the board index page but unfortunately i haven't got a portal tab like in the demo,
Any pointers would be much appreciated
Portal link: http://ubermpower.co.uk/uberv2/portal.php?style=3
Board index link: http://ubermpower.co.uk/uberv2/index.php?style=3
Cheers MT
-
Topic author - Active Member
- Posts: 17
- Joined: 2. December 2010 02:29
- phpBB.com User: MadTaffy
Re: black_pearl
Not sure if this helps but unlike subsilver2 where its all in the overall_header the Black _pearl style has a menu_block.html
If possible i would like the portal button next to the forum button exactly like in the demo, (FIXED)
Here is the original styles/black_pearl/templates/menu_block.html where i guess the changes must be made,
Managed to work it out
replace with:
Cheers MT
EDIT: (tried to replace code myself)
If possible i would like the portal button next to the forum button exactly like in the demo, (FIXED)
Here is the original styles/black_pearl/templates/menu_block.html where i guess the changes must be made,
Code: Select all
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="forum-buttons" colspan="3" width="100%">
<!-- IF not S_IS_BOT -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><a href="{U_REGISTER}">{L_REGISTER}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />
<!-- IF S_USER_LOGGED_IN --><a href="{U_PROFILE}">{L_PROFILE}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_INDEX}">{L_FORUM}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />
<!-- IF not S_IS_BOT -->
<!-- IF S_USER_LOGGED_IN -->
<!-- IF S_DISPLAY_PM --><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a><!-- IF PRIVATE_MESSAGE_INFO_UNREAD --><a href="#"> / </a><a href="{U_PRIVATEMSGS}" class="pm-new-link">{PRIVATE_MESSAGE_INFO_UNREAD}</a><!-- ENDIF --> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF S_DISPLAY_MEMBERLIST --><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF S_DISPLAY_SEARCH --><a href="{U_SEARCH}">{L_SEARCH}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_FAQ}">{L_FAQ}</a>
</td>
</tr>
</table>
replace with:
Code: Select all
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="forum-buttons" colspan="3" width="100%">
<!-- IF not S_IS_BOT -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED and not (S_SHOW_COPPA or S_REGISTRATION) --><a href="{U_REGISTER}">{L_REGISTER}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />
<!-- IF S_USER_LOGGED_IN --><a href="{U_PROFILE}">{L_PROFILE}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_INDEX}">{L_FORUM}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />
<a href="{U_PORTAL}">{L_PORTAL}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />
<!-- IF not S_IS_BOT -->
<!-- IF S_USER_LOGGED_IN -->
<!-- IF S_DISPLAY_PM --><a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a><!-- IF PRIVATE_MESSAGE_INFO_UNREAD --><a href="#"> / </a><a href="{U_PRIVATEMSGS}" class="pm-new-link">{PRIVATE_MESSAGE_INFO_UNREAD}</a><!-- ENDIF --> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF S_DISPLAY_MEMBERLIST --><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<!-- ENDIF -->
<!-- IF S_DISPLAY_SEARCH --><a href="{U_SEARCH}">{L_SEARCH}</a> <img src="{T_THEME_PATH}/images/menu_sep.png" alt="" /> <!-- ENDIF -->
<a href="{U_FAQ}">{L_FAQ}</a>
</td>
</tr>
</table>
EDIT: (tried to replace code myself)
-
- Portal Professional
- Posts: 1959
- Joined: 19. April 2009 21:34
- phpBB.de User: archivar
- phpBB.com User: archivar
- Location: Deutschland
Re: black_pearl
You must choose the style in the ACP as a standard.MadTaffy wrote:Wonder if you could help me out with something else,
I was hoping this would sort out the portal link on the board index page but unfortunately i haven't got a portal tab like in the demo,
Any pointers would be much appreciated
Portal link: http://ubermpower.co.uk/uberv2/portal.php?style=3
Board index link: http://ubermpower.co.uk/uberv2/index.php?style=3
Cheers MT
V.G. archivar
sorry for my bad english
sorry for my bad english