I divided an image into three parts and aligned them to the right, causing text to wrap around them. Here's a glimpse of the HTML code I used:
<img src="" style="float: right;">
<img src="" style="float: right; clear: right;">
<img src="" style="float: right; clear: right;">
Everything was going well until I introduced a sidebar that I also aligned to the right above my images, like this...
<div class="Sidebar" style="float: right;">Text, Menus, etc.</div>
<img src="" style="float: right;">
<img src="" style="float: right; clear: right;">
<img src="" style="float: right; clear: right;">
Now, the first image (without the clear style) remains in its position, but the other two images disappear below the sidebar.
Is there any way to solve this issue?