Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi @bens3,
Thank you for reaching out to the Shopify community. I'd be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?
manoucompany.com
Im also looking to make my slideshow picture on my homepage fill 100% of the page width. Thanks!
ain't there a checkbox to control this?
If not, you can add a code like this to the Custom CSS setting of this section:
.marquee .scrolling-text__item:before {
display: none !important;
}
To make your slides full-width, use CSS like this in relevant section:
.slideshow .banner {
max-width: 100% !important;
}
In both cases, I believe you may omit the " !important" part if you use it in Custom CSS setting.