i would like to replace this code : <IF {LINKFILETITLE}><br>Joint file : <a href="https://www.webmastersite.net/forums/download.php?id={LINKID}">{LINKFILETITLE}</a> ({LINKDOWNLOADS} downloads) </IF> in the template "Show Links in Category"
by the one showing directly the image with its link;
I'm a little lost in the manual, could anybody indicate me the items ?
Comments on image on
Experienced
Usergroup: Customer
Joined: Oct 21, 2003
Total Topics: 21
Total Comments: 53
Hello,
i would like to replace this code :
<IF {LINKFILETITLE}><br>Joint file : <a href="https://www.webmastersite.net/forums/download.php?id={LINKID}">{LINKFILETITLE}</a> ({LINKDOWNLOADS} downloads)
</IF>
in the template "Show Links in Category"
by the one showing directly the image with its link;
I'm a little lost in the manual, could anybody indicate me the items ?
Thank you by advance
CC
Experienced
Usergroup: Customer
Joined: Oct 21, 2003
Total Topics: 21
Total Comments: 53
a little work and it's allright : here is the code i use.
I've also made some changes for the presentation, text at left and image at right.
- open the template "show links in category"
- find
<!-- BEGIN REGULAR LINKS -->
<td width="99%" valign="top" class="link">
...
</td>
<!-- END REGULAR LINKS -->
replace by
<!-- BEGIN REGULAR LINKS -->
<td {LINKWIDTH} valign="top" class="link">
<table>
<tr>
<td width="90%" valign="top">
...
downloads)
</IF>
</td>
<td valign="top" align="right">
<IF {LINKFILETITLE}><br><img src="https://www.webmastersite.net/forums/download.php?id={LINKID}">
</td>
</tr>
</table>
</td>
<!-- END REGULAR LINKS -->