Log in

View Full Version : Clicking an image takes you to a large version of picture



Freeman
02-08-2008, 09:31 PM
How do you do that? I don't want to make it a hyper link, but I will if I need to. I don't like the border that comes with a hyper link. Thanks for any help, JF

thetestingsite
02-08-2008, 09:48 PM
I don't want to make it a hyper link, but I will if I need to.

You could use a javascript onclick function on the image itself, but I don't know it that's valid.


I don't like the border that comes with a hyper link. Thanks for any help, JF

You can get rid of the border by either using border="0" in the img tag (before HTML 4.01 Strict) or using CSS:



img { border: 0px;}


or



style="border: 0px;"


Hope this helps.