Hello All!
I am having a slight problem, where I am pulling information from a database and putting it on the front page. Each record that gets pulled from the DB is put inside a div system, like this:
Code:
<div class="item" style="display:block;">
<div class="item_title">
<h2>HEADLINE HERE</h2>
<!-- End Item_Title -->
</div>
<div class="item_divider">
<!-- End Item_Divider -->
</div>
<div class="item_date">
<p class="date">DATE HERE</p>
<!-- End Item_Date -->
</div>
<div class="item_body">
<div class="item_image">
IMAGE HERE
<!-- End Item_Image -->
</div>
<div class="item_text">
<p>MAIN TEXT HERE</p>
<!-- End Item_Text -->
</div>
<!-- End Item_Body -->
</div>
<div class="item_footer">
RELATED LINKS HERE
<!-- End Item_Footer -->
</div>
<!-- End Item -->
</div>
The problem I am having is that if the image for that story is taller than the text, the image starts to cut into the article below, throwing the whole page out of line.
For an example, go to
http://www.robowhizards.com/index-new.html
and scroll down to '2006 Nano Quest Challenge Released'
and you'll see what I mean.
Thanks in Advance to anyone who checks this out!