Hi! My website images look good on mobile and laptop, but are cropped on desktop. If anyone can help me with some code that would be awesome.
Here I leave my URL https://estudiozet.com/ and some images of the main problem.
Thanks!
.
Hi! My website images look good on mobile and laptop, but are cropped on desktop. If anyone can help me with some code that would be awesome.
Here I leave my URL https://estudiozet.com/ and some images of the main problem.
Thanks!
Please add this CSS to your theme
@media (min-width: 1440px){
.image-bar--medium .image-bar__content {
height: 750px;
}
.image-bar--large .image-bar__content{
height: 1250px;
}
}
@media (min-width: 2560px){
.image-bar--medium .image-bar__content {
height: 1000px;
}
}
Thanks!
Please add the following CSS code to your assets/theme.scss.liquid bottom of the file.
@media (min-width: 1440px){
.image-bar--medium .image-bar__content {
height: 750px;
}
.image-bar--large .image-bar__content{
height: 1250px;
}
}
@media (min-width: 2560px){
.image-bar--medium .image-bar__content {
height: 1000px;
}
}
Thanks!
Thanks a lot!!
It works perfectly!