jhh9899 Posted August 13, 2010 Share Posted August 13, 2010 Hello, I have a (hopefully simple) question to adapting my PrestaShop Theme.I want to move the center column up to the very top, so it is of same height as the logo on the left.Any ideas? Thankful for any contribution! Link to comment Share on other sites More sharing options...
rocky Posted August 14, 2010 Share Posted August 14, 2010 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 More sharing options...
jhh9899 Posted August 15, 2010 Author Share Posted August 15, 2010 Perfect!Thank you for the help! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now