Tagged: background image, mobile
Hi
I get an unwanted background image on mobile Android. For some reason an image used as background for one of the color sections on my website (#team) is used in mobile view as background for complete site.
Thanks
Problem is in Firefox for Android, v 41.0
Hey!
I could not see it on Chrome / Safari iOS. Can you please provide a screenshot?
Best regards,
Basilis
Problem is in Firefox for Android, v 41.0
See screen grabs below. Should be black background instead of b&w hands image.
Thanks.
Hi!
Please edit the color section with the background then add a unique id in the Section ID field. Use “custom-section” for example. Add this in the Quick CSS field to fix the background:
.avia-android #custom-section .av-parallax {
display: none !important;
}
.avia-android #custom-section {
background-image: url(https://consciousflowfestival.com/wp-content/uploads/2015/02/CFF-hands.jpg);
background-attachment: scroll;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
This will disable the parallax effect on android device. Remove browser cache before testing the page.
Cheers!
Ismael
Thanks. Works like a charm.