Hi all
If you understand html this is quite simple here's an example from the bottom of the standard template sites
CODE
<tr>
<td id="bg_footer">
<ul id="menu_footer">
<li><a href="/static/about_us/about_us.do">About us</a></li>
<li><a href="/registration/step1.do">Join Now!</a></li>
<li><a href="/links.htm">Links</a></li>
<li><a href="/contacts.do">Contact Us</a></li>
<li><a href="/static/faq/faq.do">FAQ</a></li>
<li><a href="/login.do">Login</a></li>
<li><a href="/sitemap.xml">XML Site Map</a></li>
</ul>
</td>
</tr>
Now if you are simply putting a new row of links copy and paste the same set of code and change the link
<li><a href="*link*">XML Site Map</a></li>
to where you want to point to
and the text
<li><a href="/sitemap.xml">**text**</a></li>
to the text you want to use
If its a pic you want to link from put <img src "http://***"> in place of the text part
If you still struggle let me know what specifically you want to link to and where from on your site and I'll send you the code you need. Can't guarantee it wil be today but certainly within a few days
Paul