View Single Post
  #669  
Old 07-18-2012, 06:46 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Smart Template v4.4.x

You can either add CSS along these lines...

Code:
div.ask-question a:link { font-size: 24px; ETC ETC }

Or you can turn the link into a button...

skin/smart_template/customer/main/product_details.tpl

Replace...

{include file="customer/buttons/button.tpl" button_title=$lng.lbl_ask_question_about_product style="link" href="javascript: return !popupOpen(xcart_web_dir + '/popup_ask.php?productid=`$product.productid`')"}

With...

{include file="customer/buttons/button.tpl" button_title=$lng.lbl_ask_question_about_product style="button" href="javascript: return !popupOpen(xcart_web_dir + '/popup_ask.php?productid=`$product.productid`')"}
__________________
xcartmods.co.uk
Reply With Quote