Linking thumbnail to bigger image
3 posts by 2 authors in: Forums > CMS Builder
Last Post: November 7, 2008 (RSS)
By wevolutions - November 7, 2008 - edited: November 7, 2008
I want to link my thumbnail to my bigger image and have it open in a new window. How do I do this please?
Re: [WEVOLUTIONS] Linking thumbnail to bigger image
By _kate_ - November 7, 2008 - edited: November 7, 2008
Hi,
Seems like you have it pretty much completed. Depending upon how you set up your code, you should be able to add target="_blank" to the link. You can see where it should be placed in the sample code below.
<a href="<?php echo $upload['urlPath'] ?>" target="_blank">
Hope that helps!
If you have any further questions please don't hesitate to ask :)
Seems like you have it pretty much completed. Depending upon how you set up your code, you should be able to add target="_blank" to the link. You can see where it should be placed in the sample code below.
<a href="<?php echo $upload['urlPath'] ?>" target="_blank">
Hope that helps!
If you have any further questions please don't hesitate to ask :)
Re: [_kate_] Linking thumbnail to bigger image
Thank you very much.