Click to See Complete Forum and Search --> : help on linking to an image


chrislip7329
04-14-2009, 01:10 AM
I am trying be able to click on a word on my site and it link me to another page which will just be the picture. Not sure how to really word this, but I am looking for any insight I can get.

mrtom100
04-14-2009, 09:52 AM
well if you want to link a word to another page which is what you sound like you need thats simple

<a href="pageName.html">LInk Text here</a>

change the red coloured text to what you need or are you after something different

bigalc
04-14-2009, 01:22 PM
In most browsers if you just want an image and nothing else, you can just put the image filename as the URL:


<a href="myimage.jpg" target="_blank">LInk Text here</a>
<!-- adding target="_blank" will make it open in a new window -->

Charles
04-14-2009, 02:57 PM
<!-- adding target="_blank" will make it open in a new window -->
And use depricated code and make your HTML invalid. If you must open in a new window use<a href="myimage.jpg" onclick="window.open (this.href, 'child'); return false">Link Text here</a>