Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a site that is centered horizontally:

#container{margin:auto 0px}

My main page has a height of 900px, and does not have scroll bars. Other pages do scroll and the header of the site is moving on scroll width, because the width of content pages is smaller than the main page.

What can I do in this situation? I don't think jquery is the answer, because it starts on pageload, so we'll see the moving anyway.

share|improve this question

3 Answers

Try this:

html {overflow-y:scroll;}

and all pages have scrollbars. This is the best way for centered pages with different content height | css5 scrollbars

share|improve this answer

This centering problem when the vertical scrollbar appears is a common problem... AFAIK, there is no really satisfying solution. A trick would be to create an invisible footer at the bottom of every page in order to force the scrollbar to always be present.

share|improve this answer

using master pages for all similar pages is good solution in designing declaring height of pages is not good way in css using overflow attributes is for scroll

.mystyle  {

overflow:hidden;

overflow:auto;

overflow-x: scroll

overflow-y: scroll

}

http://css-tricks.com/2833-the-css-overflow-property/

share|improve this answer
Please insert some punctuation (., ,) into the text of your answer. It's like three different sentences rolled into one so it makes no sense. – Sparky Nov 29 '11 at 19:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.