Forum Moderators: not2easy
I have the following html code (I'll write only the interesting part):
<div class="container">
<div class="div1">
<img src="whatever.gif" alt="whatever" />
</div>
<h3>heading3</h3>
<p>paragraph really long paragraph really long paragraph really long paragraph really long paragraph really long paragraph really long paragraph really long</p>
<ul>
<li>first</li>
<li>second</li>
</ul>
<p>second paragraph</p>
</div>
mportant: the image shown has no fixed width, and I cannot change the html code, because it's generated by drupal, a CMS.
How the hell can I get this?
Thanks!
[edited by: jatar_k at 8:07 pm (utc) on Nov. 23, 2007]
[edit reason] no urls thanks [/edit]
One way would be to float div1 left and give it a fixed height which is greater than anything else on the page. The result should look like a two-column layout, but it's pretty crude.