I have two images that I want adjacent but they appear one above the other. here is the code:
<div style="float:left;">
<div style="float:left;">
<img src="/logo.png" style="float:left;" /></div>
<div style="float:left;"> <img src="/logo2.png" width="55" style="float:left;" height="50"/</div>
</div>
Note that both divs containing the two images are themselves within a div that is floated to the left.
Thanks.