Archived topic
Fixed background issue IOS
2 replies · Started by Jesús on October 27, 2020
Hello,
I use Generate press premium with Generate Block. When I use a background image in a generate block container it looks very big and without fixed property so I can´t create a parallax effect.
Any idea to resolve this issue? Thanks.
Hi there,
Mobile devices won't support fixed background images.
You can add this CSS to disable them so the image shows correctly on smaller devices:
@media(max-width: 769px) {
.gb-container {
background-attachment: initial !important;
}
}
Hi there,
Mobile devices won't support fixed background images.
You can add this CSS to disable them so the image shows correctly on smaller devices:
@media(max-width: 769px) {
.gb-container {
background-attachment: initial !important;
}
}