Disclaimer: I am not a webdesigner by any means, i only know enough to get my self into trouble.
Im trying to help a non-profit fix their webpage, and Im having a rotten time getting IE and Firefox to agree. the front page is a 3x3 grid of pictures that link to other pages. (some of the pictures are 2x wide).. it works just fine in FF -- all pictures are flush against each other. But IE keeps adding whitespace between the pictures within each row.
ive been hacking and poking at this a while, but nothing i do seems to make it better.
please help, thanks!
<!-- // FROM HTML FILE // -->
<div id="main_imagemap">
<div class="img">
<a href="involved.htm"><img src = "images/nw.jpg" align="left"></a>
<a href="video.htm"><img src = "images/nn.jpg"></a><br>
<a href="outlook.htm"><img src = "images/ww.jpg" align="left"></a>
<a href="about.htm"><img src = "images/ce.jpg"></a><br>
<a href="projects.htm"><img src = "images/sw.jpg" align="left"></a>
<a href="aboutus.htm"><img src = "images/ss.jpg" align="left"></a>
<a href="news.htm"><img src = "images/se.jpg"></a><br>
</div>
</div>
<!-- // FROM CSS FILE // -->
#main_imagemap
{
position:absolute;
top:130pt;left:50pt;width:790;
z-index:6;
}
div.img img
{
display: inline;
margin: 0px;
padding: 0px;
border: 2px solid #000000;
}
div.img a:hover img
{
border: 2px solid #F7EF6A;
}