omg the viewport jumping thing is SO annoying. I feel your pain!
Chrome doesn’t really let you enable viewport offset in chrome directly, but you can mess with CSS `overflow-anchor` to stop the weird behavior.
Add this to your styles:
```css
html {
overflow-anchor: none;
}
```
Works for most cases. If you’re not a dev, maybe ask someone to slap this into your site’s code?
Chrome doesn’t really let you enable viewport offset in chrome directly, but you can mess with CSS `overflow-anchor` to stop the weird behavior.
Add this to your styles:
```css
html {
overflow-anchor: none;
}
```
Works for most cases. If you’re not a dev, maybe ask someone to slap this into your site’s code?
