hi, for JM bistro, there are several colors provided,
in admin config, under DESIGN, in Skin (Images / CSS) field, i stated "red". But the default color is still showing pls help thanks,
1 answer
Hi chen 2401,
Go to this File : app\design\frontend\default\your_default_template\ template\page\ja_vars.php
1) How to make the default colour to be Blue?
Replace this code
Code:
$_params->set('ja_color','default');//'default','blue','brown','green'\
with
Code:
$_params->set('ja_color','blue');//'default','blue','brown','green'
2) How to remove/hide/disable the colour menu from appearing?
Find this code and replace this code
Code:
$_params->set('usertool_color', 4); //0: disable, 4: show colors tools
With
Code:
$_params->set('usertool_color', 0); //0: disable, 4: show colors tools
Once Done Clear your Magento cache, browser cache to see the changes.
Hope this helps.