If you are using V9 this should work.
First you need to identity what Display Format XML Package you are using and wish to change. You can find this by going to the product's Add/Edit Product page.
Mine is called "product.variantsingrid.xml.config". The default file is located in /Web/XMLPackage/
Find this section:
Code:
<td align="left" valign="top" width="40%">
<div class="ProductNameText">
<xsl:value-of select="aspdnsf:Decode($pName)" disable-output-escaping="yes"/>
</div>
<xsl:value-of select="aspdnsf:ProductSpecsLink(ProductID, SpecsInline, SpecTitle, SKU, SpecCall)" disable-output-escaping="yes" />
<br/>
<xsl:value-of select="aspdnsf:EmailProductToFriend(ProductID, $CatID)" disable-output-escaping="yes"/>
<div align="left">
<xsl:value-of select="aspdnsf:Decode($pDescription)" disable-output-escaping="yes"/>
</div>
<xsl:value-of select="aspdnsf:ShowQuantityDiscountTable(ProductID)" disable-output-escaping="yes" />
<xsl:value-of select="aspdnsf:ShowInventoryTable(ProductID)" disable-output-escaping="yes" />
</td>
I changed mine to read:
Code:
<td align="left" valign="top" width="40%">
<div class="ProductNameText">
<xsl:value-of select="aspdnsf:Decode($pName)" disable-output-escaping="yes"/>
</div>
<xsl:value-of select="aspdnsf:ProductSpecsLink(ProductID, SpecsInline, SpecTitle, SKU, SpecCall)" disable-output-escaping="yes" />
<br/>
<div align="left">
<xsl:value-of select="aspdnsf:Decode($pDescription)" disable-output-escaping="yes"/>
</div>
<xsl:value-of select="aspdnsf:ShowQuantityDiscountTable(ProductID)" disable-output-escaping="yes" />
<xsl:value-of select="aspdnsf:ShowInventoryTable(ProductID)" disable-output-escaping="yes" />
<xsl:value-of select="aspdnsf:EmailProductToFriend(ProductID, $CatID)" disable-output-escaping="yes"/>
</td>
</tr>
This moved it down to below the description.
You'll need to modify each of the Display Format Xml Packages that you use.