Tagged: Colour section, full width, mobile devices
Servus!
I have a colour section configured to fullwidth in quick CSS as I found in the forum:
#ID .container { max-width: 100% !important; padding: 0; margin: 0; }
And it’s working properly in big screens but not in mobile devices. What can I do to fix this issue?
Thank you very much in advance!
PS. Congrats for your awesome theme
Hi Gonzalo,
I’m guessing it’s the white section with a lot of text? I can’t see any responsive issues with it though, could you post a screenshot of the problem please?
Best regards,
Rikard
It’s the first section with the iframe. it’s not full width on mobile devices
Thanks a lot
Hi!
Please change your code to following one
#ID .container { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
Cheers!
Yigit
Thank you very much indeed!
finally I used:
#mapa .container { max-width: 100% !important; width: 100% !important; padding: 0; margin: 0; }
this way, menu doesn’t overlap the iframe
Cheers!