2 Comments
  1. Does it look good on desktop? If so, you may have different padding sizes for mobile breakpoints.

    You can check the current page container that has mobile padding issues in your desktop browser.

    And have a look in your theme settings for global css or the container inside a section. Add about 30px / 20px to padding-left and padding-right between them.

    Or you can use the following CSS:

    /* For mobile devices */

    @media (max-width: 767px) {
    .your-page-container { padding-left: 30px; padding-right: 30px; }
    }

    @media (max-width: 478px) {
    .your-page-container { padding-left: 20px; padding-right: 20px; }
    }

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer