[Support request] Edit Padding in Columns (Elementor)

Home Forums Support [Support request] Edit Padding in Columns (Elementor)

Home Forums Support Edit Padding in Columns (Elementor)

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

    Hi,

    I want to edit the global Paddings (and Margins) for all Columns. Right now i had to edit every single Column by its own. Im sure there is a more elegant way to define it globaly.
    pls help

    #798622
    David
    Staff
    Customer Support

    Hi there,

    Elementor doesn’t apply a global control for padding, but you could try this CSS:

    .elementor-row>.elementor-column>.elementor-element-populated {
        padding: 20px !important;
    }

    This is out of our scope so we can’t really offer much more than this.

    #798648
    Felix

    thanks david!

    is this the same for mobile?

    #798719
    David
    Staff
    Customer Support

    For mobile you could try this rule using a media query:

    @media (max-width: 768px) {
        .elementor-row>.elementor-column>.elementor-element-populated {
            padding: 20px !important; /* adjust for mobile */
        }
    }
    #1117659
    Jos

    Nice CSS to get great results.
    Great tip David.

    Greets,
    Jos

    #1117757
    David
    Staff
    Customer Support

    Glad you found it useful 🙂

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