[Support request] padding when toggled on

Home Forums Support [Support request] padding when toggled on

Home Forums Support padding when toggled on

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #912868
    Diego

    Hello!
    I would like to add a padding top only when the toggled menu is active.
    When the toggled menu is deactivated I would like to remove the padding.

    The padding which I need to set is:

    .elementor-widget-wrap {
    padding-top: 360px;
    }

    Please, could you help me?

    Regards,

    Diego.

    #913008
    David
    Staff
    Customer Support

    Hi there,

    you could try wrapping your CSS in media query like so:

    @media (min-width: 768px) {
        .elementor-widget-wrap {
            padding-top: 360px;
        }
    }

    Then the CSS will only apply on the larger screens.

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