Log in

View Full Version : Help needed with making main image link to another site.


Dave-M
01-30-2008, 10:30 AM
Hi,

I have made a sub forum for my forum sponsors, and it is all starting to look ok, but I need to make the main logo image at the top clickable so it takes me to his own website.

Currently, I am using a seperate template for his subforum, and I have completely replaced my own logo/banner and changed it for his stuff, so now I just want to make it clickable.

I have this code for the header template, and as the heaser/banner is made up of 3 main images and several different slices of that image, I wasn't sure where to start.


<td align="left" valign="top" width="226" height="126"><img src="$stylevar[imgdir_misc]/hdr_ls.gif" width="187" height="126" alt="" /></td>
<td align="left" valign="top" width="50%" height="126" style="background-image:url($stylevar[imgdir_misc]/hdr_ls_x.gif)"><img src="$stylevar[imgdir_misc]/hdr_ls_x.gif" width="1" height="126" alt="" /></td>

The above code shows the left hand side image, which is the one that I need to be clickable at the very least, but ideally, I would prefer the whole lot to be clickable :)

Thanks

Dave.

Mosh
01-31-2008, 06:10 AM
Hi,

I have made a sub forum for my forum sponsors, and it is all starting to look ok, but I need to make the main logo image at the top clickable so it takes me to his own website.

Currently, I am using a seperate template for his subforum, and I have completely replaced my own logo/banner and changed it for his stuff, so now I just want to make it clickable.

I have this code for the header template, and as the heaser/banner is made up of 3 main images and several different slices of that image, I wasn't sure where to start.


<td align="left" valign="top" width="226" height="126"><img src="$stylevar[imgdir_misc]/hdr_ls.gif" width="187" height="126" alt="" /></td>
<td align="left" valign="top" width="50%" height="126" style="background-image:url($stylevar[imgdir_misc]/hdr_ls_x.gif)"><img src="$stylevar[imgdir_misc]/hdr_ls_x.gif" width="1" height="126" alt="" /></td>

The above code shows the left hand side image, which is the one that I need to be clickable at the very least, but ideally, I would prefer the whole lot to be clickable :)

Thanks

Dave.

You can try this, where URL-TO-SITE-HERE is to the site you want to go to:

<td align="left" valign="top" width="226" height="126"><a href="URL-TO-SITE-HERE"><img src="$stylevar[imgdir_misc]/hdr_ls.gif" width="187" height="126" alt="" /></a></td>