Tagged: maximum container width
Hi,
I have the “Maximum Container width” set to 65%, but I wanted to change it to 100% on mobile and tablets.
Right now I have:
@media only screen and (max-width: 1300px) {
.container {
width: 100% !important; } }
But I’m not seeing any changes.
Thanks
Hey MikeTandySwag,
Please post a link to where we can see the problem you are having.
Best regards,
Rikard
You got it! Info in private area
Hi,
Thanks for that. Please try this CSS instead:
@media only screen and (max-width: 1300px) {
.container {
width: 100% !important;
max-width: 100% !important;
}
}
Best regards,
Rikard
Thanks! It looks good on Tablet. But on Mobile it goes all the way to the edge. Thoughts on how to fix that?
Hi,
Try the following:
@media only screen and (max-width: 767px) {
.container {
width: 80% !important;
max-width: 80% !important;
}
}
Best regards,
Jordan Shannon