forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: avdv78 on August 21, 2004, 07:41:03 am

Title: [Solved]: Add link next to e-card link
Post by: avdv78 on August 21, 2004, 07:41:03 am
Hi,

I want to add a link next to the e-card link. How can i do that?
What's the tag for the full url of a picture?

Thanks!
Title: Re: Add link next to e-card link
Post by: Joachim Müller on August 21, 2004, 10:25:58 am
one question per thread please. To add a link to the navigation, edit themes, your theme/theme.php, find
Code: [Select]
                <td align="center" valign="middle" class="navmenu" width="48">
                        <a href="{ECARD_TGT}" title="{ECARD_TITLE}"><img src="images/ecard.gif" width="16" height="16" border="0" align="absmiddle" alt="{ECARD_TITLE}"></a>
                </td>
and add after it
Code: [Select]
                <td align="center" valign="middle" class="navmenu" width="48">
                        <a href="yourlink.htm" title="your ecard title when hovered over"><img src="images/your_custom_image.gif" width="16" height="16" border="0" align="absmiddle" alt="your ecard title when hovered over"></a>
                </td>

GauGau
Title: Re: Add link next to e-card link
Post by: avdv78 on August 21, 2004, 01:50:58 pm
Thank you!