I took the liberty and added something to it to make the links to the items a bit stick out if description is also shown. I'm not sure if the css is perfect but it does what it it supposed to do, maybe some css guru can clean that up
add at the end to skin1/skin1.css
/*sitemap*/
.sitemapList {
COLOR: #330000;
FONT-WEIGHT: bold;
}
.sitemapListDisabled {
COLOR: #909090;
}
A.sitemapList:link {
COLOR: #FF8600;
FONT-WEIGHT: bold;
TEXT-DECORATION: none;
}
A.sitemapList:visited {
COLOR: #330000;
FONT-WEIGHT: bold;
TEXT-DECORATION: none;
}
A.sitemapList:hover {
COLOR: #FF6347;
FONT-WEIGHT: bold;
TEXT-DECORATION: none;
}
A.sitemapList:active {
COLOR: #330000;
FONT-WEIGHT: bold;
TEXT-DECORATION: none;
}
/*sitemap*/
--------------------
add to line 18 in /skin1/customer/sitemap.tpl
class="sitemapList"
it should look like this:
<a href="product.php?productid={$products[$s].productid}" title="{$products[$s].product}" class="sitemapList">{$products[$s].product}</a><br>
----------------------
add link to sitemap in /skin1/help.tpl
<a href="http://{$config.Company.company_website}/shopping-cart/sitemap.php" class="VertMenuItems">{$lng.lbl_sitemap}</a><br />
maybe helpful for someone