Hi,
I am trying to have a right floating image in my content that needs to appear at 100px from the top of the content. My content should flow around the right image. I managed to do this as follows:
<div style="width:1px;height:100px;float:right;"> </div>
<table border="0" cellpadding="0" cellspacing="0" style="padding:15px 0px 10px 10px; clear:right;float:right;" width="337">
<tr><td>image here</td></tr></table>
The 1px div pushes the table down and allows the content to flow around the table. Ok, this works. Now comes the problem.
When I want to left align an image in my content, in FIREFOX, this image jumps down in the content and some content even covers the image. I figured this is because of the clear:right; in my right side table that is influencing my left side image. IE doesn't have this problem.
Any ideas on how to fix this problem?
Thanks!
Xavier