Hi
You place your question on eshoptrix forum, but i assume that you are referring to eShopTrix II template. So i moved your topic to the right forum.
To make your template align on the middle, please open the template_css.css file, located on CSS folder and find this code:
- Code: Select all
.page960 {
width: 960px;
clear: both;
padding-left: 20px;
position: relative;
}
.page980 {
width: 980px;
clear: both;
}
Replace it with:
- Code: Select all
.page960 {
width: 960px;
clear: both;
padding-left: 20px;
position: relative;
margin: 0 auto;
}
.page980 {
width: 980px;
clear: both;
margin: 0 auto;
}
That's it.
Cheers