View Single Post
  #1086  
Old 11-24-2015, 11:15 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Hi Phil - is it possible to have to category descriptions in a scroll box? We needed to add more content to each cat but now the products are way down the page and we worried people won;t see them.
Sure, for reBOOT v3.x, edit skin/reboot/customer/main/subcategories.tpl

Replace...
Code:
{$current_category.description|amp}
With...
Code:
<div class="scrollable300">{$current_category.description|amp}</div>
Height classes available - scrollable100 / scrollable150 / scrollable200 / scrollable250 / scrollable300 / scrollable350 / scrollable400

For reBOOT v4.x, edit skin/reboot/customer/main/subcategories.tpl

Replace...
Code:
{$current_category.description|amp}
With...
Code:
<div class="scrollable-div" style="height:300px;">{$current_category.description|amp}</div>
(More flexible, you can set any px height you want)
__________________
xcartmods.co.uk
Reply With Quote