Page shifting when there is a vertical scrollbar vs when there is not

yep - create a div and put all your content within it and set the width of that div to 100hw - the horizontal width excludes the scroll-bar and uses up all the screen. Then using custom code hide the overflow on the x-axis i.e.

body { overflow-x: hidden }

that will stop the page from jumping when the scrollbar appears / disappears.

let me know if you’ve any issues.

2 Likes