• Resolved harmonyous

    (@harmonyous)


    Hello, is there a way to maximize the post content width in mobile? My visitors are complaining that there are too much empty space on the left and right of the content compared to my previous theme.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @harmonyous you can reduce the padding on the right & left sides of your content for mobile view using CSS. You can add the code below to the Additional CSS section in your customizer CSS code below, feel free to adjust the padding to your liking

    @media only screen and (max-width: 954px) {
    .has-global-padding {
        padding-right: 10px;
        padding-left: 10px;
    }
    }

    You can access the CSS editor by adding this after your URL /wp-admin/customize.php and visiting the Additional CSS panel.

    Thread Starter harmonyous

    (@harmonyous)

    @thelmachido it worked. Thanks

    Hi @harmonyous I am glad that worked, I will mark this as resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Content margin for mobile is too wide’ is closed to new replies.