How to change default color to Blue?

Hi,

1) How do I make the default colour to be Blue?
2) How do I remove/hide/disable the colour menu from appearing?

Thanks
Janake

2 answers

Profile photo of chavan 100.00 $tone September 27, 2011
Public

Go to this File : app\design\frontend\default\jm_mozanistemplate\pa ge\ja_vars.php

1) How do I 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'

Once Done Clear your Magento cache, browser cache to see the changes.

2) How do I 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.

Note: If you Find my Post useful please click on the Thanks Icon

#1
Profile photo of Tomas Soldan 0.00 $tone July 18, 2012
Public

Hello, thank you, your information is helpfull.

But I have one more question. How to do, if I have two websites, one I want in blue color and the other e.g. in green color?

#2

This question is now closed

Written By

Comments