Hello!
I want the content from a 1/1 layoutmodul to cover the hole mobil screen. It works if i duplicate the conent to a singe grid row modul, but i´m wondering if the 1/1 layoutmodul can this to on smaller displays.
As you see in this screenshot the yellow background color is showing which is not wanted in this case.
https://1drv.ms/u/s!AgR-Im5lamBEgVtoULYn1HpxOPJQ?e=zcWGXW
Thanks you
Andreas
Hey alliansohog,
Thank you for the inquiry.
You can use this css code to remove the background of the section on mobile view.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.avia-section.av-ugxhum-d283eee3c266c71d0bf0c9b930190a32 {
background-color: transparent;
}
}
And if you want to increase the width of the main container, insert this css.
.responsive #top #wrap_all .container {
width: 95%;
max-width: 95%;
}
Best regards,
Ismael
Thank you for your help! That worked.