websiteguy Posted December 13, 2006 Share Posted December 13, 2006 Hi, How would I go about adding a Home Page link button to the forum index of PHPBB2 forum? I'm using the ClanzDarkness2 template.Thanks,Curt Quote Link to comment Share on other sites More sharing options...
Loki Posted December 14, 2006 Share Posted December 14, 2006 The easiest way would be to just add it to the overall_header.tpl file. Find the templates/ClanDarkness2/overall_header.tpl file and open it and find this section of code toward the bottom of the file. It is included in a much longer line, but that is the part you need to find.[code]<span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">[/code]Just before that code add this code,of course you will need to change the http://www.yoursite.com to your actual home page link first tho.[code]<span class="mainmenu"><a href="http://www.yoursite.com" class="mainmenu">Home</a></span> [/code]After you have added it it should look like this.[code]<span class="mainmenu"><a href="http://www.yoursite.com" class="mainmenu">Home</a> </span> <span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">[/code]That will put a link called "Home" right next to your Register link. ;) Quote Link to comment Share on other sites More sharing options...
websiteguy Posted December 14, 2006 Author Share Posted December 14, 2006 Excellent!!Thank you very much. And thanks for the quick response.Ever grateful,The Websiteguy Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.