Hi guys.
I need to reduce size, zoom, dimensions, and something like that of image banner of this page (or all):
horostoreonline.com
but only for desktop. nothing has to be changed for mobile. So I mean that its too large and I would like to center all content without change the image portion.
example what I want like size.
Hi @neal_8475
To be able to use CSS without affecting mobile, you should use responsive mode so that you can put CSS code in:
@media screen and (min-width: 750px){
}
The min-width means that when the screen is larger than 750px will be applied. For example, here I want to resize the whole product image:
I add the below CSS code to the theme’s CSS:
@media screen and (min-width: 750px){
.product__media.media.media--transparent img{
width: 100px !important;
height: 100px !important;
}
}
The image on the desktop will be changed:
While on the mobile will not be changed because the mobile size is only smaller than 414px
I hope that it’s useful for you.