Shopify themes, liquid, logos, and UX
Hi All, can the multicolumn section on mobile be made to autoslide? Theme Trade
Thank you
Hi,
By adding custom CSS and HTML, you can create an auto-sliding effect for a multi-column section on mobile devices in the Trade theme.
Example of custom css
@media only screen and (max-width: 767px) {
.auto-slide-container {
overflow: hidden;
position: relative;
}
.auto-slide-wrapper {
display: flex;
flex-direction: row;
animation: auto-slide 10s linear infinite;
}
.auto-slide-item {
flex: 1 0 auto;
min-width: 100%;
}
@keyframes auto-slide {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
}
Example custom HTML
<div class="auto-slide-container">
<div class="auto-slide-wrapper">
<div class="auto-slide-item">
<!-- Column content here -->
</div>
<div class="auto-slide-item">
<!-- Column content here -->
</div>
<!-- Add more columns as needed -->
</div>
</div>
Thank you, can you please advise where should be placed? I have added to the theme and base and still no change
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025