
Originally Posted by
dbltoe
The are the lines of code in the tpl_header.php file that put the home link at the top of the page.
The first thing to remember is to save the changes to includes/templates/yourtemplate/common/.
Secondly, you are going to change the php variables to html text. For instance, you might want to change
Notice that php inside html has single quotes to separate the php from the html. Also, note the " . " (space-period-space) on either side of the variable. You would need to replace all of that so that would become
Common mistakes are removing the <li>'s and breaking the un-ordered list AND not removing the php code (in red at both ends of the example above). Either will make your code unattractive in at least IE.
You could give the <li>'s a class so that you could define the hovers, etc.