Ad
Why Does My Page Make Me Scroll Twice Om Mobile?
I'm having an odd issue that is causing people to have to scroll twice, or the page becomes stuck on mobile devices less than 600px wide. I've tried the following without any luck. I am an absolute beginner, so please forgive my ignorance. The page is
https://neverthirst.myshopify.com/pages/eoy2019
.ClassForEntirePage{
height:100%; overflow-y:hidden;
}
Would you please help me figure out where I'm going wrong?
Thanks for any help on this!!
Ad
Answer
there is a property overflow-y: scroll
in one of your CSS file at html
tag.
you need to remove that property from that if possible. otherwise you have to override that property by applying property using !important
like below:
put this css code to your custom css file.
html {
overflow-y: initial !important;
}
I hope this will works fine for you.
Thank You...
Ad
source: stackoverflow.com
Related Questions
- → October CMS create a multi select Form field
- → How to update data attribute on Ajax complete
- → laravel blade templating error
- → should I choose reactjs+f7 or f7+vue.js?
- → How to dynamically add class to parent div of focused input field?
- → Setting the maxlength of text in an element that is displayed
- → Undefined Result for Variable with Javascript innerHTML function
- → Expanding search bar not expanding before search
- → Get the calling element with vue.js
- → Blade: how to include a section in one page but not in another
- → How to print/log reactjs rendered dom?
- → how to write react component to construct HTML DOM
- → How to add a timer in HTML5 and Javascript?
Ad