Cmxmods.net
Would you like to see a new MOD created?

Support Forum · Home » Olympus » Support » "Home" link

"Home" link

You may wish to add a link to your homepage in your forum header. There are two ways you can do this in prosilver. Be aware, that it is advisable that you edit all files by manually transferring the file through FTP, not by editing the file through the administration panel.

The first method is by actually adding an extra link to the file /styles/prosilver/template/overall_header.html. To do this, you would look for this line in the file, by using the Ctrl+F function of a text editor. Do not edit the file using Microsoft Word, Microsoft Frontpage, Dreamweaver, etc as it adds unwanted code. FIND:

<a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}" class="icon-faq">{L_FAQ}</a> 

On the next line, ADD:

<a href="http://www.HOMEPAGEHERE.com" title="Home" class="icon-home">Home</a> 

You must replace www.HOMEPAGEHERE.com with the real location of your homepage.

The second method is to replace one of the current links. This may be needed due to space constraints. To do this, look for the same line again in overall_header.html

<a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}" class="icon-faq">{L_FAQ}</a> 

Instead of adding a line after it, REPLACE that line with:

<a href="http://www.HOMEPAGEHERE.com" title="Home" class="icon-home">Home</a> 

Again, you must replace www.HOMEPAGEHERE.com with the real location of your homepage.

Once the changes have been applied, re-upload the file back into place using FTP, and if need be, refresh the template cache through your administration panel.