Shopify themes, liquid, logos, and UX
Hey all, can anyone help me remove the image slider just below the product images (like the image below) so that it looks like the reference ive provided on mobile (so that the image sits just above the product title)
Any help would be greatly appreciated.
Im using the spotlight theme btw.
URL: https://project-thirteen.com.au/products/raw-hem-trousers
please refer to the below code.
Option 1: please add below code in base.css file
@media screen and (max-width: 767px) {
.product__media-wrapper .slider-buttons.no-js-hidden.quick-add-hidden {
display: none;
}
}
OR
Option 2 : Paste below code into theme.liquid file before </body> tag
<style>
@media screen and (max-width: 767px) {
.product__media-wrapper .slider-buttons.no-js-hidden.quick-add-hidden {
display: none;
}
}
</style>
Hi @projectthirteen , I hope you are doing well.
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </body>
<style>
@media screen and (max-width: 767px) {
.product__media-wrapper .slider-buttons.no-js-hidden.quick-add-hidden {
display: none !important;
}
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025