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)