Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1200264

    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

    #1200425

    Hey MikeTandySwag,

    Please post a link to where we can see the problem you are having.

    Best regards,
    Rikard

    #1200638

    You got it! Info in private area

    #1200917

    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

    #1201273

    Thanks! It looks good on Tablet. But on Mobile it goes all the way to the edge. Thoughts on how to fix that?

    #1201449

    Hi,

    Try the following:

    @media only screen and (max-width: 767px) {
    .container {
        width: 80% !important;
        max-width: 80% !important;
    }
    }

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.