Lisa
posted this on December 11, 2011 01:38 pm
We are currently working on a complete store designer that will allow you to change how your store looks everywhere and anywhere. We hope to release this soon.
For now we have the following options ready for you to use. We will be adding more, so stay tuned.
Please note:
http://html-color-codes.info/
http://www.colorschemer.com/online.html
http://www.allprofitallfree.com/color-wheel2.html
http://www.webmonkey.com/2010/02/color_charts/
This picture gives you an idea on what you can do and where. You may wish to use it as a reference.
Thin border around the entire store:
store_widget_options.widget_border_color = 'green';
Background of the store: (does not include the product area)
store_widget_options.widget_background_color = 'orange';
Here is a picture of how it would look like if they were green and orange.

Notes:
1. Making them the same color will remove the border and allow for a cleaner look.
2. You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
Border edges: (thin line around all the products)
store_widget_options.content_border_color = 'green';
Product border: (lines separating the products)
store_widget_options.content_background_color = 'orange';
Here is a picture of how it would look like if they were green and orange.

Notes:
1. Making them the same color will remove the border and allow for a cleaner look.
2. You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
Border edges: (thin line around the border of the products boxes)
store_widget_options.product_box_border_color = 'green';
Product background: (background color of the product boxes)
store_widget_options.product_box_background_color = 'orange';
Here is a picture of how it would look like if they were green and orange.

Notes:
1. Making them the same color will remove the border and allow for a cleaner look.
2. You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
Thin line around the product images
store_widget_options.product_picture_border_color = 'orange';
Here is a picture of how it would look like if it was orange.

Notes:
1. Making this the same color as the picture background will remove the border and allow for a different look.
2. You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
The color of the price number
store_widget_options.product_price_color = 'green';
The color of the Buy Now wording
store_widget_options.buy_now_color = 'orange';
The background color of the Buy Now button
store_widget_options.buy_now_background_color = 'blue';
Here is a picture of how it would look like if they were green, orange and blue.

Note: You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
The color of the product name
store_widget_options.product_name_color = 'orange';
Here is a picture of how it would look like if it was orange.

Note: You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
The category name color
store_widget_options.category_name_color = 'orange';
The category background color
store_widget_options.category_name_background_color = 'green';
Here is a picture of how it would look like if they were orange and green.

Note: You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
Top menu
Color of the main menu links
store_widget_options.menu_color = 'green';
Color of main menu links with mouse hover:
store_widget_options.menu_hover_color = 'orange';
Footer
Color of footer menu links:
store_widget_options.links_color = 'green';
Color of footer menu links with mouse hover:
store_widget_options.links_hover_color = 'orange';
Here is a picture of how it would look like if they were green and on hover (store) orange.
Notes:
1. Making them the same color will remove the hover effect
2. You can use basic color names like: red, green, grey, or you can use the Hex color code as well like: #c0c0c0.
With this you can increase or decrease the margins on each side to align your menu and footer to your liking.
Top menu left and right margins
store_widget_options.menu_bar_margin_left = '20px';
store_widget_options.menu_bar_margin_right = '20px';
Footer menu left and right margins
store_widget_options.links_bar_margin_left = '20px';
store_widget_options.links_bar_margin_right = '20px';
Note: for better alignment and symmetry keep them equal.
Changing product elements' positioning
You can change where to position the product price, product name, buy now button, social elements, or simply remove any of them.
In the below codes these letters mean:
T= Product Name
P= Product Price
B= Buy Now Button
S= Social Buttons
To get it done, you must think of your product box as a table with 2 columns, then you can decide which 2 elements from the 4 above you wish to place “right” or you wish to place “left”
Here is how Wazala store is now,
On the left side you have the product title, then below it the social boxes.
store_widget_options.product_left_column = 'TS';
On the right side you have the product price, then below it the Buy Now button.
store_widget_options.product_right_column = 'PB';
Here is a picture to refresh your memory.

Feel free to change these around as you see fit.
For example switching the price to be below the product title, and the social boxes below the buy now button:
store_widget_options.product_left_column = 'TP';
store_widget_options.product_right_column = 'BS';
Here is a picture showing how it would look like.
Or if you state the code without any of these 4 elements, then you are removing an element.
For example, removing the social elements the code would be:
store_widget_options.product_left_column = 'T';
store_widget_options.product_right_column = 'PB';
Here is a picture showing how it would look like.
<!-- Begin Wazala Code -->
<script type="text/javascript" charset="utf-8"><!--
var is_ssl = ("https:" == document.location.protocol);
var setsHost = is_ssl ? "https://www.wazala.com/widget/" : "http://www.wazala.com/widget/";
document.write("<"+"script src='" + setsHost + "js/widget_over.js?v=1&rnd="+new Date().getTime()+"' type='text/javascript'" + "><" + "/script" + ">");
//--></script>
<script type="text/javascript" charset="utf-8">
var store_widget_options = {};
store_widget_options.ver = 1;
store_widget_options.display = "overlay";
store_widget_options.nickname = "YOURSTORENAME";
store_widget_options.lang = "en";
store_widget_options.wazalaURL = setsHost;
store_widget_options.widget_border_color = 'white';
store_widget_options.widget_background_color = 'white';
store_widget_options.menu_color = '#c0c0c0';
store_widget_options.menu_hover_color = '#c0c0c0';
store_widget_options.links_color = '#c0c0c0';
store_widget_options.links_hover_color = '#cfcfcf';
store_widget_options.content_border_color = 'white';
store_widget_options.content_background_color = 'white';
store_widget_options.product_box_border_color = 'white';
store_widget_options.product_box_background_color = '#ffffff';
store_widget_options.product_picture_border_color = 'c0c0c0';
store_widget_options.product_price_color = '#a0a0a0';
store_widget_options.buy_now_color = 'white';
store_widget_options.buy_now_background_color = 'red';
store_widget_options.product_name_color = '#696969';
store_widget_options.category_name_color = 'white';
store_widget_options.category_name_background_color = '#c0c0c0';
var store_widget = new WazalaWidget.widget(store_widget_options);
</script>
<!-- End Wazala Code -->