Hi, I am no HTML or CSS programer and i’m trying to remove the slideshow from my website on mobile view.
I found many solutions over here among them one that says:
add this at the bottom of Assets/themes.css
@media screen and (max-width: 767px) {
#shopify-section-template–15677039935742__164450774216718f43{display:none !important;}
}
Shy to ask but i entered the code section of my site from shopify and can only find theme-editor.js and theme.liquid.
I can’t find where the themes.css is located.
Nevertheless i’ve tried the code (any many others on this panel) on both stated above and it didn’t work.
I just need to remove the slideshow from the mobile version of my website.
Appreciate your help!
Kindly send a link to your store url
In your theme.liquid, right after the
put this code
@media (max-width:500px){
.slideshow-component{
display: none !important;
}
}
@honeyandlilly if this doesnt work I’d need access to your store real quick to see what the issue might be. Kindly lemme know how it goes when you add the code above
Hi Luna,
Thank you for your prompt reply. Tried it and it’s still not working. I’d
appreciate if you could check it out.
oh sorry to hear it didn’t work, kindly send me your store’s shopify url it’s going to be something like
honeyandlili.myshopify.com kindly copy and send me that either here or my inbox and I’ll send you a request to work on it
I’ll need a code before i can access your store, you can see how to get the code in the screenshot below
where can I get to that? in settings?
Yes settings. but then easy way would be to go to settings, users and permissions, scroll down to staff section on the right side, you’ll see Add staff, enter my email(which I have sent you in your inbox) and under permissions tick themes then scroll down, click on Send invite
Fixed, slideshow will not show below 500px.
Incase you want to adjust the width in the future you can find the code in
component-slideshow.css line 149
Please mark my comment as solution if it worked out. thanks
Great it worked! thank you so much!