Hello,
Should be a simple fix I think for someone with a little more css experience than me. Just have 3 image links displayed horizontally beside each other.
html:
and css looks like this:Code:<div> <div class="column3-unit-left"> <p><a href="#"><img src="./img/image.jpg"/></a></p> </div> <div class="column3-unit-middle"> <p><a href="#"><img src="./img/image2.jpg"/></a></p> </div> <div class="column3-unit-right"> <p><a href="#"><img src="./img/image3.jpg"/></a></p> </div> </div>
I know this css code isn't quite right and I'm trying to edit this code which is from a template I'm modifying. It does, however appear just fine in IE7 and Firefox. But in IE6, the last image displays on the next line, and in IE5.5 it's really really messed up...Code:.column3-unit-left {float:left; width:175px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/; margin-left:10px;} .column3-unit-middle {float:left; width:175px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/; margin-left:78px;} .column3-unit-right {float:left; width:175px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/; margin-left:78px;}
Can anyone help out? Thanks.









Bookmarks