Note: Always make a backup copy of theme
- Go to Online store > Themes > Actions > Edit code.
- Open the base.css(main.css/them.css)/theme.liquid.
- Paste the following code to hide scrollbars:
- Save changes
<style> /* Remove horizontal and vertical scrollbars */ html, body { overflow: hidden; } /* Remove horizontal scrollbar */ html, body { overflow-x: hidden; } /* Remove vertical scrollbar */ html, body { overflow-y: hidden; } </style>