Hi all,
I have a problem with alignment of image and content in a list. Here is what my code is:
<li>
<div class="small-view-image">
<img src="../images/xyz.png" height="41" width="34" alt="Test" title="Test"/>
</div>
<div class="small-view-content">
<a href='../xyz.html'>XYZ</a>
</div>
</li>
The problem is I cannot use float left to align the image on left and the content on right.
This is the output I am expecting. I cannot use the float:left because, the page is multilingual. Any suggestions or ideas welcome.