Site logo

[Support request] Right padding only on mobile in section custom html and query loop

Home Forums Support [Support request] Right padding only on mobile in section custom html and query loop

Home Forums Support Right padding only on mobile in section custom html and query loop

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2448710
    Artur
    #2448990
    David
    Staff
    Customer Support

    Hi there,

    you have this CSS on your site:

    .tabcf {
        padding: 20px 40px 20px 0;
    }

    Which is adding additional right padding on all devices. You need to limit that to desktop eg.

    
    @media(min-width: 769px) {
        .tabcf {
            padding: 20px 40px 20px 0;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.