Is there a way to reduce the “as seen on” size on mobile only? pic Below
website: www.ecogarby.com
Password: ttt
Is there a way to reduce the “as seen on” size on mobile only? pic Below
website: www.ecogarby.com
Password: ttt
[email removed]Acid2Rain To reduce the “as seen on” size on mobile only, add this code to your theme.css file.
Navigate to online store >> Click edit theme code.
Now find theme.css and paste the following code.
@media (max-width: 600px)
{
.gallery__item-wrap
{
max-width: 13rem !important;
margin: 0 auto !important;
}
}
If you want to adjust the width then change the value of rem (like 1rem, 2.5rem, 3rem, etc). I hope it will be helpful for you.
Thanks