PDA

View Full Version : adding a link head


figmental78
11-03-2008, 03:31 AM
Hi,

I'm using the dark matter free template and wanted to add my blog link next to the Home, Collection and About links. Is this possible and if yes, how?

Cheers

snafu
11-03-2008, 08:55 AM
no problem, search for that in the html template files:


<ul id="menu">
<li><a href="index.php"><DM_STR_HOME></a></li>
<li><a href="<SITE_BROWSELINK_PAGED>"><DM_STR_COLLECTION></a></li>
<li><a href="index.php?x=about"><DM_STR_ABOUT></a></li>
</ul>


and ad this, with your path to your blog

<ul id="menu">
<li><a href="http://web57.ws/wordpress/index.php">my Blog</a></li>


<li><a href="index.php"><DM_STR_HOME></a></li>
<li><a href="<SITE_BROWSELINK_PAGED>"><DM_STR_COLLECTION></a></li>
<li><a href="index.php?x=about"><DM_STR_ABOUT></a></li>
</ul>



(this is only a demonstration, there is no blog)

figmental78
11-03-2008, 12:02 PM
awesome, thank you so much!