Slidebars
Slidebars copied to clipboard
Can't scroll down content inside container is hidden
Hi, Adam I am using your slidebar last version was working fine but when I updated to version 2.0 it's not working properly when I open my website in Android phone I can't scroll down some part of website is hidden so I checked your website on my android phone and the problem still exists I can't scroll down to the bottom of site.
see the screenshot : https://scontent-lax3-1.xx.fbcdn.net/v/t1.0-9/fr/cp0/e15/q65/13615428_1836015126628510_7089806859195352001_n.jpg?efg=eyJpIjoidCJ9&oh=91a9f07b89f6c591a7c711ac9e1d2b3f&oe=5805A9E1 see bottom of screen shot your copyright is hidden I can't scroll down it's working fine on desktop but not in Android.
Related to https://github.com/adchsm/Slidebars/issues/237
In relation to my site, and the other issue, this worked for me:
[canvas="container"] {
overflow-y: visible !important;
}
body, html {
overflow-y: visible !important;
}
Thanks Worked
On my Shopify site I'm using a top slidebar and a fixed header. The above code resulted in the content in the <div canvas="container">
obscuring the <div off-canvas="slidebar-1 top shift">
element...As I scrolled down the page, the container would cover the slidebar.
So I used the following and it seems to be working so far but I don't have an Android phone to test on. The code is similar to above but without setting overflow-y: visible !important;
body, html {
overflow-y: visible !important;
}