Image does not show up in IE

liunx

Guest
Check out this site:

<!-- m --><a class="postlink" href="http://telconstar.com/misc/fpcbryan.org/index.php">http://telconstar.com/misc/fpcbryan.org/index.php</a><!-- m -->

Under the work "Welcome" and to the right of that paragraph there should be an image of a church that sorta fades out. If you have Mozilla you can see this image. If you have IE, you cannot. What am I doing wrong? It displays the image if I take out the "float: right" in my "imageWithBorder" class, however, it's not where I want it if I take out that line.

Ideas?I've experienced this problem before as well. Try setting position: relative; in the container div. Thus, if you had

<div class="box">
<img src=http://www.webdeveloper.com/forum/archive/index.php/"something.gif">
</div>

You would want your CSS to look like this:

.box {
position: relative;
}

At least I think that was what was going on. I may be wrong though.Good call my man. That did the job.
 
Back
Top