Hello,
I have three divs with content (h3 header, img, and p text) that are approx. 400x300 and I am trying to get them to display inline, beside eachother. The image by itself displays properly, however when ever I add the h3 and or p text to it, it goes onto the next line. My guess is the h3 and p have built in breakers.
Is there anyway to prevent them from going to the next line, and still displaying properly?
code:
<ul>
<li>
<div id="new_recipe">
<h3><a href="http://fireflyspices.com/?p=366" rel="bookmark" title="Permanent Link to Maybe?">
Maybe?</a></h3><br />
<img src="http://fireflyspices.com/wp-content/uploads/2010/09/cajun-mojo-img.png"><br />
<p>I might like cjun mojoj</p>
</div>
</li>
Regards,