So on this site https://www.pelicansinks.com/ I need to remove the background images on the two color sections below the main slider. Only for mobile devices. How do I do this. Thanks
and you realy mean mobile devices and not smaller screens?
you can try this:
.avia_mobile .home #av_section_1 .av-parallax {
display: none !important;
}
.avia_mobile .home #av_section_1 {
background: #7db9e8;
background: -moz-linear-gradient(45deg, #7db9e8 0%, #ffffff 80%);
background: -webkit-linear-gradient(45deg, #7db9e8 0%,#ffffff 80%);
background: linear-gradient(45deg, #7db9e8 0%,#ffffff 80%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#ffffff',GradientType=1 );
}
.avia_mobile .home #av_section_2 .av-parallax {
display: none;
}
.avia_mobile .home #av_section_2 {
background-image: -ms-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
background-image: -o-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(100, #DDDDDD));
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
background-image: linear-gradient(to bottom, #FFFFFF 0%, #DDDDDD 100%);
}
Hi,
Thanks for sharing @guenni007, much appreciated. Did you try that out and did you have any luck with it @pkonstan?
Best regards,
Rikard
It worked thanks!!!. @guenni007 @Rikard