Hey,
Can someone help me understand how I can get the images that are loaded after my main image, to appear as thumbnails down the bottom of the main image so customers can see there are more? I can see on desktop I can change the thumbnails from left to right to bottom, but no matter which I select they don’t appear at all on mobile.
My shopify theme is Drop and my URL is: https://salourlingerie.com/products/rochelle-bodysuit
Thanks!
Hi,
Which is theme you using on your store?
You can check on setting of that part first, find to place setting show thumbnail and check has the option show thumbnail on mobile.
Hi @Holly18 ,
I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!
Step 1: Go to Admin → Online store → Theme > Edit code:
Step 2: Search for the file theme.css. And add this code snippet to the end of the file.
@media (max-width: 767px) {
.sm-hide {
display: block !important;
}
}
or in file theme.css, you press Ctrl + F and looking for “.sm-hide” and change the display of it from (none !important) to (block !important)
Step 3: Save and reload home page.
=>> The result:
I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.
Have a nice day sir!
Hi @Holly18 ,
Please go to Actions > Edit code > Assets > section-main-product.css file and paste this at the bottom of the file:
@media (max-width: 767px) {
.gallery__thumbnail-position--right .product-gallery__thumb-slider {
display: block !important;
}
}
1 Like
HEllo @Holly18
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css—> line number 1121
search this code
@media (max-width: 767px) {
.sm-hide {
display: none !important;
}
}
and replace with this code
@media (max-width: 767px) {
.sm-hide {
display: table-column !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hi @Holly18 , I hope you are doing well.
- Go to Online Store → Theme → Edit code.
- Open your theme.css file
- In theme.css, paste the below code
@media (max-width: 767px) {
.sm-hide {
display: block !important;
}
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi @Holly18 ,
If you have any questions, you can contact me directly.
Nice to meet you 