Plugin Author
NoreWP
(@norewp)
Thank you for the report and the link @jdimina
Investigating and will get a fix out as soon as possible.
Plugin Author
NoreWP
(@norewp)
I’ve done a thorough investigation and unfortunately this issue is theme related.
I’ve tested with the default theme TwentySeventeen, GeneratePress, Hestia, Astra, OceanWP and 3 of my own themes – the issue only appears on Astra & OceanWP.
Both themes have the html property declared as overflow: scroll in their stylesheet like so html{overflow-y:scroll}
I’ll be putting out a workaround fix once I’ve finished investigating the other issue, but it would be better if those themes addressed the issue with their files.
Hello! Thanks for the quick response! Tell me, please, what should I write in the code? I wrote
<style>
html{overflow-y:auto;}
</style>
but it does not work.
When I write
<style>
html{overflow-y:hidden;}
</style>
the scroll disappears completely.
Plugin Author
NoreWP
(@norewp)
There is no easier solution outside of the theme.
Here’s the workaround I came up with – the background does not scroll when the modal is open, this rule is a Bootstrap built in.
html {
-ms-overflow-style: scrollbar;
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
}
I’ll be including this in the plugin when I push the next update.
Man, you’re incredibly cool! Everything works as it should! Thank you)
Plugin Author
NoreWP
(@norewp)
You are most welcome and happy to be of service 🙂
Closing this as resolved for now but feel free to open a new thread if you encounter any other issues.
Regards,
Zulf