View Single Post
  #7  
Old 05-09-2007, 06:49 PM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default Re: Product Title - How to make it italic?

An easier way would be to use this:

product.tpl
Code:
{include file="dialog.tpl" title="<em>`$product.producttitle`</em>" content=$smarty.capture.dialog extra='width="100%"'}

products.tpl
Code:
<a href="product.php?productid={$products[product].productid}&amp;cat={$cat}&amp;page={$navigation_page}{if $featured eq 'Y'}&amp;featured{/if}"><font class="ProductTitle"><em>{$products[product].product}</em></font></a>

Or even better (for the products.tpl file), just change the ProductTitle class in skin1.css to this:

Code:
.ProductTitle { COLOR: #000000; FONT-WEIGHT: bold; FONT-SIZE: 12px; font-style: italic; }
Reply With Quote