
06-20-2011, 08:28 AM
|
|
 | |
|
|
 X-Wizard
|
|
Join Date: Feb 2006
Location: UK
Posts: 1,146
|
|
|
Re: center all the store, Help !
Quote:
Originally Posted by Olivierv
Hello,
(sorry for my bad english)
I have updating my xcart to the last version 4.4.3
http://www.chip-hockeyshop.com/home.php?shopkey=321
I use vivid dreams Chromo template.
I would like fix width to 1300px and centered all my store.
I have editing 2 sections in main.css in folder \skin\common_files
body
{
height: 100%; background-color: #fff;
margin: 0;
padding: 0;
min-width: 1300px;
border: 0 none;
}
----------
#page-container {
min-height: 100%;
position: relative;
width: 1300px;
margin:0 auto;
}
the width is OK but the store is left-aligned, i would like to center all.
Thank you for your help.
Oliver
|
Try
Code:
body
{
height: 100%;
background-color: #fff;
margin: 0 auto;
width: 1300px;
border: 0 none;
}
__________________
v4.1.10
In Dev v4.5.x
"If you don't keep an eye on your business, someone else will."
|
|