ViArt - PHP Shopping Cart
Select your currency:
American DollarBritish Pound
Version 4.0 FAQ
The logo image pushes the whole site to the right in Default design

Replace this line in default_white.css (or other colour scheme that you use):
.contentStyle {height: 1%; overflow: hidden; position: relative; z-index: 1;}

with this one:
.contentStyle {clear: both; height: 1%; overflow: hidden; position: relative; z-index: 1;}


How to make a fixed width of design
In case you don't want your design to stretch according to monitor size but rather leave some empty space from left and right sides, you need to open your CCS file where find such line:

.frameBlocks {margin: auto; padding: 0 20px 20px 20px; text-align: left;}

and change it for example like this:
.frameBlocks {margin: auto; padding: 0; text-align: left; width: 999px;}

How to center the logo and move it above menu
You need to open your CSS file and find there such line:

.HeaderLogo {float: left;}

And change it to this one:

.HeaderLogo {text-align: center;}

Then save the changes.

Change background in custom block
You can change the background of custom block by performing the following steps:

1. Create a new style in your active CSS file, for example like this:

.newStyleName .MiddleCenter {background-image: url(...)}

2. Add custom block to some page in CMS then click on its settings and specify in the field "Block CSS Class:" - "newStyleName".

Where to specify Meta Data for Home, Site Map and other pages?
The Meta Data is now located in CMS next to "Layout" selection, please look at this image for example:
http://www.viart.com/img/v4_meta.jpg
ViArt - PHP Shopping Cart