I am using the Athens Theme from shopify and i have added my slideshow image to my Page but when i go to mobile version it squishes it completely. Where in the code does it change as i can’t find anything.
Hi can you share your store link so I can add code from inspect and send you and you can insert that code
Regards
Hi there, Yes it is www.hydrafixonline.com.au
Thank you very much!
There are two possiblities
You’re using scrolling items and these are not responsive yet ,
1st solutions is to make their height and width 100% so that these are fully adjusted on the website , try with this code
@media (max-width: 749px)
component-s…ller.css:49
.scroller-inner .grid .grid-item:not(:only-of-type) {
width: 100% ! important;
max-width: 100% ! important;}
- Second solutions is to show them one by one not by scrolling items, and here is the code for that
@media (max-width: 749px)
component-s…ller.css:49
.scroller-inner .grid .grid-item:not(:only-of-type) {
width: 100% ! important;
max-width: 100% ! important;
flex-flow: wrap ! important;}
put code inside this file > Component - Scroller.css
Is that to do with the Slideshow part? Because i don’t want that scrolling, the pictures above are not the problem just trying to make the Slideshow image fit.
@media (max-width: 749px)
component-s…ller.css:49
.scroller-inner .grid .grid-item:not(:only-of-type) {
width: 100% ! important;
max-width: 100% ! important;}
then use this one and let me know if it works for you


