Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post 2 Questions On Black Pearl - PhpBB 3.0.5 
 
(first question sorted out and deleted)

Second question.

He wants a link button somewhere to take people to his website. Creating the buttons is no problem, but where does he put the link code? I am assuming that also goes somewhere in overall_header.html, but where?

Thanks for any help with these issues. Black Pearl is a beautiful theme and we appreciate it!

Linkage: http://blueflamepress.com/forum
 



 
brewsterSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
No help on this one either?
 



 
brewsterSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
uuhm well if he wants the link to be somewhere around ..home forum new etc etc find menu_block.html

if you look at the other links you can see how it`s  done  
 




____________
www.DutchaGoGo.com (development/under construction ...Forever?¿?)
 
Joshua203Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
Joshua203 wrote: [View Post]
uuhm well if he wants the link to be somewhere around ..home forum new etc etc find menu_block.html

if you look at the other links you can see how it`s  done  


If I had some familiarity with PHP, perhaps - but I don't, so that doesn't help me at all. I have no clue what to do there.
 



 
brewsterSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
now common it s a small file with a few links how hard can it be to pick one link:

Code: [Download] [Hide] [Select]
        <a href="{U_INDEX}">{L_FORUM}</a>&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;


change it into something like:

Code: [Download] [Hide] [Select]
        <a href="MY HOME ADRESS URL.HTML">HomePage</a>&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;


and add that back in there at a position you want it to be

PS make sure you copy the clean file for back up just in case you want to start over
 




____________
www.DutchaGoGo.com (development/under construction ...Forever?¿?)
 
Joshua203Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
Hi,
is it possible that a new window is opened?
look at www.aan-forum.de
I click on chat and it will be opened in the same window.


Code: [Download] [Hide] [Select]
<a href="chat/index.php">Chat</a>&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;


complete menu_block.html:
Code: [Download] [Hide] [Select]
<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>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->
            <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;
            <!-- IF S_USER_LOGGED_IN --><a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->
        <!-- ENDIF -->
        <!-- IF U_RESTORE_PERMISSIONS --><a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->

        <a href="chat/index.php">Chat</a>&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;


        <!-- 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 -->&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->
            <!-- ENDIF -->
            <!-- IF S_DISPLAY_MEMBERLIST --><a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->
        <!-- ENDIF -->
        <!-- IF S_DISPLAY_SEARCH --><a href="{U_SEARCH}">{L_SEARCH}</a>&nbsp;&nbsp;<img src="{T_THEME_PATH}/images/menu_sep.png" alt="" />&nbsp;<!-- ENDIF -->
        <a href="{U_FAQ}">{L_FAQ}</a>
    </td>
</tr>
</table>

 



 
PietSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
hi again,

try using target in the href, you may like the target _blank  
 




____________
www.DutchaGoGo.com (development/under construction ...Forever?¿?)
 
Edited by Joshua203, Thu 01 Apr, 2010 13:08: small correction .. changed the word url into href!
Joshua203Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
Thanks! Perfekt!
 Joshua203 is a god!
 



 
PietSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
great job piet, goodluck and have a nice day

PS .. looking in the mirror now to find the god part, i don t see it  hahahaha
 




____________
www.DutchaGoGo.com (development/under construction ...Forever?¿?)
 
Joshua203Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: 2 Questions On Black Pearl - PhpBB 3.0.5 
 
brewster wrote: [View Post]
(first question sorted out and deleted)



would be nice if you don´t delet questions and answers, since this is a sopport forum, and others might find questions and answers use and helpfull, to sort similar problems in there sites out
 




____________
Out of Order
 
spydieSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron