Hyperlink Images dont work

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What do I need to do to get hyperlink images to work? Hypertext seem to work
but not images. Ive tried many things but to no avail.
 
zoff said:
What do I need to do to get hyperlink images to work? Hypertext seem
to work
but not images. Ive tried many things but to no avail.

In what? A webpage you are creating, on others' webpages, on one webpage
in particular? All links are hyperlinks - the ones for images just
point to a file instead of another webpage. Please describe the problem
better, including what browser you are using. If you are having a
problem with one particular website, post the url so others can check
it out for you.

Malke
 
I apologise if I am missing the bigger picture here ('scuse the pun), but to
use an image as a hyperlink then you place the HTML 'anchor' tag around it.

e.g. in it's almost simplest form...

<a href="www.microsoft.com">
<img src="directory/image.jpg" border=1|0>
</a>

Hope this helps - not sure if this is what you are meaning?

Martyn.
 
neo i dont think thats what i meant.

Malke:

Go to www.soccer.com. Pick a shoe. This brings you to a screen where you
can view the item from different angles. Selecting a small picture at the
bottom of the bigger picture enlarges that small picture. I cant do this in
Windows Explorer nor Firefox. I use Windows XP Pro on an Intel CoreDuo
laptop. Ive tried many things including regsvr32, had HJT analyzed, Ran all
sorts Spyware and antivirus but to no avail.
 
zoff said:
neo i dont think thats what i meant.

Malke:

Go to www.soccer.com. Pick a shoe. This brings you to a screen where
you
can view the item from different angles. Selecting a small picture at
the
bottom of the bigger picture enlarges that small picture. I cant do
this in
Windows Explorer nor Firefox. I use Windows XP Pro on an Intel
CoreDuo
laptop. Ive tried many things including regsvr32, had HJT analyzed,
Ran all sorts Spyware and antivirus but to no avail.

The page uses javascript. Perhaps you have a security program that is
blocking javascript. You'll need to examine what third-party security
software you have, if any. Also check in your browsers that you've
permitted javascript to run. This doesn't have anything to do with html
and links.

Malke
 
To add a clickable image using HTML you can use the following code:
<a href="insert destination URL here"><img src="insert image location here" title="insert title" alt="insert description here"></a>
 
Back
Top