Popups shifting due to browser scroll bar (SOLVED)

Can’t reply to old topics (this should be changed) so I had to make a new one.

The solution is to always show the scrollbar with some HTML. That way, no matter what changes on the screen, your elements are always centered.

The code is:

<style>
html {
overflow-y: scroll;
}
</style>

So just stick an HTML element anywhere on the page and input that code.

5 Likes