I’m using the horizon theme in that I want to remove the horizontal scroll on my website.
website: https://firstdraftstudio.myshopify.com/
password: FD
I’m using the horizon theme in that I want to remove the horizontal scroll on my website.
website: https://firstdraftstudio.myshopify.com/
password: FD
Hi @Sivadarshan
endless-scroller-gallery-amuxzufa2annfnejwlaigenblock4303b09zqbtxt.ai-endless-scroller-amuxzufa2annfnejwlaigenblock4303b09zqbtxt {
left: 49% !important;
}
Unfortunately, overflow-x: hidden would break the sticky header.
You can, however, add the following code to the “Theme Settings”=> “Custom CSS”
html {
overflow-x: clip;
}
clip does not break sticky headers…
Hello @Sivadarshan
Please follow the steps below after logging into the Shopify admin:
Go to your Shopify Admin panel.
Click on Online Store > Themes.
Find the live theme and then click Actions > Edit code.
Search base.css
Insert the provided CSS code at the top of the file and save the changes.
.ai-endless-scroller-amuxzufa2annfnejwlaigenblock4303b09zqbtxt
{
width: calc(100vw - 10px) !important;
}
Please hit Like and Mark it as a Solution if you find our reply helpful.