Hello,
Does anyone know how to make the gap smaller between this image and the top of section on mobile only. I had it working before but seem to have made changes that reversed it.
password: abble
TIA
Hello,
Does anyone know how to make the gap smaller between this image and the top of section on mobile only. I had it working before but seem to have made changes that reversed it.
password: abble
TIA
Hi,
There is an empty block at this area
1- Go to online store
2- Edit code
3- open your base.css
Go to line: 2584
@media only screen and (max-width: 749px)
@media only screen and (max-width: 749px)
@media screen and (max-width: 749px)
.banner__content .banner__box.color-background-1 { display: none !important;
}
and fix the code as above to none instead of block.
Save
Hi @KJD_1
Try this.
@media only screen and (max-width: 749px){
.banner__box.color-background-1 {
padding: 0 !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!