View Single Post
  #690  
Old 10-08-2014, 07:58 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Pitak, to tidy up your subcategory display, apply this SQL patch...

Code:
REPLACE INTO xcart_config VALUES ('reboot_subcat_height','','0','Reboot',1335,'numeric','','','',''); REPLACE INTO xcart_languages VALUES ('en','opt_reboot_subcat_height','Subcategory column block height (pixels)','Options'); REPLACE INTO xcart_languages VALUES ('en','opt_descr_reboot_subcat_height','For automatic heights, set to zero.','Options');

Then in skin/reboot/customer/main/subcategories_t.tpl

Replace...
Code:
<div class="col-md-3 col-sm-3 col-xs-6 text-center">
With...
Code:
<div class="col-md-3 col-sm-3 col-xs-6 text-center"{if $config.Reboot.reboot_subcat_height ne "0"} style="min-height:{$config.Reboot.reboot_subcat_height}px{/if}">

Then change the value in the template settings > misc to suit...

Quote:
Subcategory column block height (pixels)

To change the header background, edit your theme CSS file in skin/reboot/css/themes/

Code:
.header_container { background: #fff; }

(this is now part of reBOOT)
__________________
xcartmods.co.uk
Reply With Quote