Click to See Complete Forum and Search --> : visible in IE


cofactor
11-15-2005, 05:55 AM
i have a html
<div align="center">
<a href="........a link here"><img src="download.png" alt="wait"></a>
</div>

this link and the image is displayed in FireFOx browser but not visible in IE .


how could i make it visible in IE too ?

Charles
11-15-2005, 06:03 AM
Post the URL; something else is going on.

Kevey
11-15-2005, 06:08 AM
I agree...this works for me just fine in IE and FF...I would double check that your quotes are closed, and everything is formatted like below:

<html><body>
<div align="center">
<a href="http://www.cnn.com"><img src="image.jpg" alt="wait"></a>
</div>
</body></html>

cofactor
11-15-2005, 06:32 AM
>I would double check that your quotes are closed

thank you sir.

this solved my problem.

i had unclosed anchor tag.
Now its fine.