Jump to content

SOLVED (Hopefully simple) Question to adapting theme


Recommended Posts

You could use absolute positioning to do that. Change lines 188-191 of themes/prestashop/css/global.css from:

#center_column {
   width: 650px;
   margin: 0 0 30px 0;
}



to:

#center_column {
   width: 650px;
   margin: 0 0 30px 0;
   position: absolute;
   left: 205px;
   top: 20px;
}



and lines 165-169 from:

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



to:

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

Link to comment
Share on other sites

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...