Hi,
Slideshow I would like it to fit on the screen properly in mobile view
A user is experiencing an issue where their slideshow doesn’t display properly on mobile devices and needs it to fit the screen correctly.
Proposed Solution:
Another participant provided CSS code to fix the mobile view:
Status:
The discussion appears to have a technical solution offered but no confirmation yet on whether it resolved the issue. The fix involves modifying theme code directly through the Shopify admin.
Hi,
Slideshow I would like it to fit on the screen properly in mobile view
Hi @Mitch23 ,
May I suggest to update code these steps:
@media(max-width: 749px){
#shopify-section-template--15357573234806__custom_liquid_EpxGnq p,
#shopify-section-template--15357573234806__custom_liquid_WjCjeF p{
width: 100%;
}
#shopify-section-template--15357573234806__custom_liquid_EpxGnq h2,
#shopify-section-template--15357573234806__custom_liquid_WjCjeF h2 {
width: 100%;
padding: 0;
}
#shopify-section-template--15357573234806__custom_liquid_EpxGnq .image-container,
#shopify-section-template--15357573234806__custom_liquid_WjCjeF .image-container {
flex-flow: wrap;
}
}