Jump to content

How to change the overall page width of prestahop website?


Recommended Posts

Find the global.css file @ YOUR_INSTALLATION_DIR\themes\prestashop\css
Change the 'width' as you need


#page {
width: 980px;
margin: 0 auto 2px auto;
text-align:left;
}

#left_column {
clear:left;
width:190px;
padding-right: 15px;
}
#center_column {
width: 556px;
margin: 0 0 30px 0;

}

  • Like 1
Link to comment
Share on other sites

  • 2 months later...
  • 7 months later...
Anyone know how to make the width, "auto", according to the users screen size and resolutions? I would like to use FULL WIDTH


hey guys

any resolution to this post above???

would be really cool!


Try going to the global.css file of the theme you're trying to change. Then change the following:

/* global layout */
#page {
width: 980px;
margin: 0 auto 2px auto;
text-align: left


to:

#page {
width: auto;
margin: 0 auto 2px auto;
text-align: left


hope it helps.
Link to comment
Share on other sites

  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...