View Single Post
  #4  
Old 03-20-2007, 11:07 AM
 
balinor balinor is offline
 

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

Default Re: How to space out my Product Options?

Here's an easy solution. Replace this:

<td valign="middle" height="25">{if $usertype eq "A"}{$v.class}{else}{$v.classtext|default:$v.class }{/if}</td>
<td valign="middle">

with this:

<td valign="middle" height="25" style="padding-bottom: 10px;">{if $usertype eq "A"}{$v.class}{else}{$v.classtext|default:$v.class }{/if}</td>
<td valign="middle" style="padding-bottom: 10px;">

Adjust the padding number until you get the spacing you want.
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote