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

The problem is:

I have a full width bar menu, which is made by creating a big margin on the right and to the left. This margin should be cropped by overflow-x: hidden, and it is... no scroll bars, everything (visually) is ok...

But, if you drag the page (using Mac Lion) or scroll to the right, the page shows an enormous bar, which should have been cropped by the overflow-x:hidden.

CSS

html {
  margin:0;
  padding:0;
  overflow-x:hidden;
}
body {
  margin: 0 auto;
  width: 950px;
}

.full, .f_right {
  margin-right: -3000px !important;
  padding-right: 3000px !important;
}

.full, .f_left {
  margin-left: -3000px !important;
  padding-left: 3000px !important;
}

Here is a link: http://jsfiddle.net/NicosKaralis/PcLed/1/

You have to open in draft to see... the jsfiddle css somehow makes it work.

@Krazer

i have and structure like this:

body
  div#container
    div#menu_bar
      div#links
      div#full_bar
    div#content_body
    ...

the #container is an centered div and has fixed width of 950px, the #full_bar is an bar that extends on the entire window, from one side to the other

if i put width 100% in #full_bar it will get only the inside width and not the width off the window

share|improve this question

6 Answers

up vote 1 down vote accepted

I don't think there's any way to prevent scrolling of an element without using JavaScript. With JS, though, it's pretty easy to set scrollLeft to 0 onscroll.

share|improve this answer
Can you make an instance of this so I know what you mean? – Riskbreaker Feb 28 at 14:32
stackoverflow.com/questions/1386696/… ...........this should be it – Riskbreaker Feb 28 at 14:39

I had this exact same problem. I solved it by putting overflow-x: hidden; on both the body and html.

http://jsfiddle.net/PcLed/14/

share|improve this answer
You still have the ability to scroll over, however. Even if the scroll bar isn't present, users with a mouse that allows zooming/panning/scrolling can still move the body over and see the rest. – RCNeil Feb 22 at 16:59
Yes I can still scroll too...the issue is happening and I am still trying to get rid of this specially for those in ipads – Riskbreaker Feb 28 at 14:33

Consider using max-width for html.

keep me posted if it's not working.

share|improve this answer
1  
What do you mean by "using max-width for html"? That's a CSS property, not an HTML attribute. How would you use it? – BoltClock Dec 26 '11 at 16:17
This method doesnt work – Nicos Karalis Dec 26 '11 at 21:20
I have a div with fixed width and inside that div an div that should have an full width – Nicos Karalis Dec 26 '11 at 21:21

How about setting the width on the content body, and warping the #container around the #menu_bar and #content_body?

body
    div#container 
       div#menu_bar (absolute positioned)
          div#links
          div#full_bar
       div#content_body (relative positioned + padding [#menu_bar height])
          ...

CSS example.

share|improve this answer
You forget one thing, the outside div have fixed width witch make the whidth 100% useless – Nicos Karalis Dec 26 '11 at 21:20
Alright, can you elaborate on what you are trying to achieve? Why does the outside div need to be a fixed width? – Krazer Dec 26 '11 at 21:30
see the edit please – Nicos Karalis Dec 27 '11 at 0:45
@NicosKaralis I made some edits. Let me know if this is along the lines of what you are looking for. – Krazer Dec 27 '11 at 1:32
Sorry, out of question... I'm using rails templates... The master temPlate has the #container and the menu_bar template has the #menu_bar, that's why i can't put it separately – Nicos Karalis Dec 27 '11 at 10:32
show 3 more comments

As igneosaur stated setting both html and body to overflow-x: hidden; solves the problem for my situation anyway. Thanks!

share|improve this answer

From Weaver's Offcanvas demo http://jasonweaver.name/lab/offcanvas/

Wrap content with:

width: 100%; 
overflow: hidden;

This limits only the width and has worked in similar occasions also has prevented scrolling while dragging.

share|improve this answer

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.