you need to strip the html from the description tag try this fix.

Change
Code:
<?php echo stripslashes($products_description); ?></div>
to this:
Code:
<?php echo stripslashes(strip_tags($products_description)); ?>