• Hi, how can I change the margin on the page to the side so that the content looks bigger on mobile versions?

    Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @thalakus,

    Thanks for reaching out to us.

    The content wrapper in mobile devices only has padding, but not margin. You can adjust this padding using custom CSS:

    @media only screen and (max-width: 767px) {
    .content-wrapper.container {
    padding-left: 0px;
    padding-right: 0px;
    }
    }

    You can add this under Appearance > Customize > Additional CSS.

    Please try this and let us know if it helps achieve your goal.

    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘Margin Mobile’ is closed to new replies.