Muller Posted July 9, 2011 Share Posted July 9, 2011 Hello everyone,<br/><br/>I'm wondering how do I make it so if the "Contact us" page (or any page) has a lot of info (and requires scrolling down) so that only the middle column scrolls down, and not the entire website?<br/><br/>Thanks. Link to comment Share on other sites More sharing options...
RJGonzalez Posted July 9, 2011 Share Posted July 9, 2011 css file look for the center column and play with the heightthat is at your /themes/prestashop/cssglobal.css line (could be a diffrent line) 239From this: #center_column { width: 556px; margin: 10 0 30px 0; overflow: hidden } To this: #center_column { width: 556px; height: 500px; [color=red]<-- add this and play with it[/color] margin: 10 0 30px 0; overflow: hidden } Link to comment Share on other sites More sharing options...
Muller Posted July 9, 2011 Author Share Posted July 9, 2011 Sorry that was not what I was looking for. What this causes is that the height of the center column is fixed. If the page is long I still need to scroll, and then the entire website scrolls.What I need is that if a page (in the center column) is long and I scroll down, only the center column scrolls down. As if the center column is in a frame. My client wants this... (I'm trying to sway them against this). Link to comment Share on other sites More sharing options...
RJGonzalez Posted July 9, 2011 Share Posted July 9, 2011 by placing a limit on the height it will scroll the reminder, My client wants this… (I’m trying to sway them against this) <<--- is a nice way in order to avoid the white space when scrolling downtry this #center_column { width: 556px; height: 500px; margin: 10 0 30px 0; overflow: hidden << change for overflow: scroll } 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