Colours

Hi there,

Just wondering how do you set the colour so that the site stays the one colour rather than it being an option to change in the menu? This is probably a silly question but I haven’t got a clue.

Also, is there any way with Magento templates that you can set one colour option for one menu item and another for another? (Say pink when you’re in the girls’ product categories and blue in the boys product categories)?

Thanks,

Emma

4 answers

Profile photo of Saguaros 0.00 $tone July 19, 2012
Public

Hi there,

Go to this File : app\design\frontend\default\your-default-templatetemplate\page\ja_vars.php

-- To make the default colour to be Blue, for example:

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.

-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.

#1
Wall Crasher 0.00 $tone July 19, 2012
Public

Hi Emma,

We use cookie to change colour. This function is from Joomlart customize function, not magento by default.
And currently we does not support colour by page like your request.

Regards

#2
Profile photo of Robin Bloemer 0.00 $tone November 14, 2012
Public

Hi Emma,

We use cookie to change colour. This function is from Joomlart customize function, not magento by default.
And currently we does not support colour by page like your request.

Regards

1) Could you please give me an idea how to realize "color by page" anyway?

2) another question which has nothing to do with color but with the slider. Is it possible to create an
instance of the slicer to use it on a second page but with other images?

Regards,

Robin

#4

This question is now closed

Written By

Comments