So simple yet I can't work this one out - I've created a slice image which sits within a table which looks fine in IE. Opera produces a gap between the two right images. Your help would be appreciated. Here's the page: http://www.bamzooki.org.uk/web-content/index.html Here's the code: <table border="0" cellspacing="0" cellpadding="0" align="right"> <tr> <td rowspan="2"><img src="images/pudsey_01.gif" alt="Pudsey Bear" height="173" width="117" border="0" /></td> <td><img src="images/pudsey_02.gif" alt="Pudsey Bear" height="38" width="89" border="0" /></td> </tr> <tr> <td><img src="images/pudsey_03.gif" alt="Pudsey Bear" height="135" width="89" border="0" /></td> </tr> </table> Guess I can't see the wood for the trees on this one?? I Should know the solution but it's driving me crazy.
Please try this code... <table border="0" cellspacing="0" cellpadding="0" align="right"> <tr> <td rowspan="2" width="117" height="173"><img src="images/pudsey_01.gif" alt="Pudsey Bear" height="173" width="117" border="0" /></td> <td width="89" height="38"><img src="images/pudsey_02.gif" alt="Pudsey Bear" height="38" width="89" border="0" /></td> </tr> <tr> <td width="89" height="135"><img src="images/pudsey_03.gif" alt="Pudsey Bear" height="135" width="89" border="0" /></td> </tr> </table> Code (markup): By the way, get yourself your own forum (phpBB, xmb, vBulletin...), it will look better.
I've tested lots of things and it still doesn't work. Try getting help at the Opera and Cross-Browser Web Design forum.
Thanks - still can't fix it. I can't get my own forum at the moment. Bit of a strange situation .... the site is being hosted for free on a Linux Server without full PHP support only cgi works so until I move it I'm stuck with the freebie. Cheers
Finally got it! - Someone suggested it on the above forum. The solution was to ad style="vertical-align:text-bottom" to the img tags Thanks for your help
Great! It really looks nice now. There are still some coding issues with Opera, FF and IE in terms of CSS.