View Single Post
  #15  
Old 03-24-2008, 06:33 AM
 
balinor balinor is offline
 

Veteran
  
Join Date: Oct 2003
Location: Connecticut, USA
Posts: 30,253
 

Default Re: moving details area above description in product.tpl

As I said before, it is because you didn't set the table cell you created to be a new row and to span both columns. Replace this:

</tr><td>{if $product.fulldescr ne ""}{$product.fulldescr}{else}{$product.descr}{ /if}</td>
</table>

with this:

</tr>
<tr><td colspan="2">{if $product.fulldescr ne ""}{$product.fulldescr}{else}{$product.descr}{ /if}</td></tr>
</table>
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote