This is the issue I am currently trying to solve. Using UL I have 3 LI:
1. Text title
2. An image
3. Text description that is long enough to flow around '2.'.
e.g.,
<ul>
<li>This is a title</li>
<li><img src=""/></li>
<li>Praesent vestibulum, libero vel faucibus posuere, nisi ante gravida purus, eu imperdiet ipsum metus ut nunc. Aliquam porttitor convallis arcu. etc., etc.</li>
</ul>
The image is set to float: right. All works well except the text in the 3rd LI item forms a column to the outmost left-hand side of the image i.e., it does not flow and wrap underneath. i.e.,
TTTTTTTT
xxxxxxxxxxxxxxxxxxxxxxxxxxxx yyyyy
xxxxxxxxxxxxxxxxxxxxxxxxxxxx yyyyy
xxxxxxxxxxxxxxxxxxxxxxxxxxxx yyyyy
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Where 'T' is the text in the 1st element
Where 'x' is the text in the 3rd element
Where 'y' represents an image
Help.





Bookmarks