I'd like to move my short description from the top area of my page (originally called in view.phtml) to the main description area (description.phtml). I've tried updating my description.phtml file with the following code:
<?php if ($_product->getShortDescription()):?>
<div class="short-description">
<div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
</div>
<?php endif;?>
I inserted this just above the long description area. However, this just breaks the description area altogehter.