View Single Post
  #513  
Old 03-24-2014, 05:00 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
I would like to have a link in the product detailed description box
This link needs to stand out from the rest of the text
How do I go about doing it

As you are using reBOOT v1, if you want to add a message for all products, you can edit skin/reboot/custom/product_details_tabs.tpl

You could perhaps use a Bootstrap (v2) alert box for emphasis...

Before or after...

Code:
<table width="100%" cellspacing="0" cepllpadding="0" border="0"><tr><td> <span itemprop="description">{$product.fulldescr|default:$product.descr}</span> </td></tr></table>
Insert...
Code:
<div class="alert alert-info"><a href="mylink.php">This is my info link</a></div>

Or you can just add the above code to your product descriptions individually.
__________________
xcartmods.co.uk
Reply With Quote