View Single Post
  #2  
Old 01-31-2008, 06:55 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: How to put a space here...

Quote:
Originally Posted by mlalande
Between the "our price" and "quantity".

I am not a programmer so please be specific?

Thanks, any help is appreciated.

If this product - page, you will need to change the file "skin1\customer\main\product.tpl".

Find this block:
PHP Code:
{if $active_modules.Subscriptions ne "" and $subscription}
{include 
file="modules/Subscriptions/subscription_info.tpl"}
{else}
<
tr><td class="ProductPriceConverting" valign="top">{$lng.lbl_price}:</td>
<
td valign="top">
{if 
$product.taxed_price ne 0 || $variant_price_no_empty}
<
font class="ProductDetailsTitle"><span id="product_price" style="white-space: nowrap;">{include file="currency.tpl" value=$product.taxed_price plain_text_message=true}</span></font><font class="MarketPrice"> <span id="product_alt_price" style="white-space: nowrap;">{include file="customer/main/alter_currency_value.tpl" alter_currency_value=$product.taxed_price plain_text_message=true}</span></font>
{if 
$product.taxes}<br />{include file="customer/main/taxed_price.tpl" taxes=$product.taxes}{/if}
{else}
<
input type="text" size="7" name="price" />
{/if}
</
td>
</
tr>
{/if}
</
table


It is responsible for displaying prices....... So try put <br>, example:

PHP Code:
{/if}
</
table>
<
br>
<
/>
<
table width="100%" cellpadding="0" cellspacing="0"
Reply With Quote