How do I make CUSTOM LIQUID image a different width on mobile and desktop
this is the liquid I am using in both right now, I want it to be a different width on mobile and desktop.
How do I make CUSTOM LIQUID image a different width on mobile and desktop
this is the liquid I am using in both right now, I want it to be a different width on mobile and desktop.
@AMOB - you can remove that width 60% from above line and use css given below for separate settings, adjust numbers as per the need, first is for desk and other for mobile
@media screen and (min-width:750px){
center img{width:60%;}
}
@media screen and (max-width:749px){
center img{width:100%;}
}
Where do I add the image?
Can you use the link above and add it like how I should add it
Hi @AMOB ,
Please change the code of custom.liquid with below code.
