adchsm / Slidebars

Slidebars is a jQuery Framework for Off-Canvas Menus and Sidebars into your website or web app.
http://www.adchsm.com/slidebars/
MIT License
1.5k stars 308 forks source link

Sidebar scroll along with body. #92

Open halluzineyt opened 10 years ago

halluzineyt commented 10 years ago

Is there a way to prevent the body scrolling along the side bar when scrolled down? sample: test.flippish.com put the window into 800 window size to see the top left menu?

adchsm commented 10 years ago

Hmm you could try this:

html.sb-active {
    overflow: hidden;
}

This should stop scrolling when a Slidebar is open!

Let me know if that works!

Thanks, Adam

halluzineyt commented 10 years ago

Thanks! Works fine on desktop but didnt worked on mobile.

adchsm commented 10 years ago

Hmm, ok try this then:

html.sb-active:not(.sb-static) {
    overflow: hidden;
}

html.sb-active:not(.sb-static) body {
    height: 100%;
    overflow: hidden;
}
halluzineyt commented 10 years ago

Nothing changed sir.

adchsm commented 10 years ago

Hmm, what did you test that on? I tested it on iOS 7 and it worked ok.

halluzineyt commented 10 years ago

im using android 4.2.1 sir

adchsm commented 10 years ago

Are you using the stcock browser or something else? Or are multiple effected?

halluzineyt commented 10 years ago

same browsers have the same effect. chrome and stock

manfuku commented 10 years ago

This worked for me!

html.sb-active { overflow: hidden; position: fixed; }

However, the entire site scrolls back to top.

adchsm commented 10 years ago

Hi manfuku,

Thanks for letting me know, i'll be sure to check it a go.

Adam