• Resolved Dani

    (@danicasati)


    Hi.
    I can’t reduce bottom margin of items in a list, using this code:

    .tpg-shortcode-main-wrapper .masonry-grid-item,
    .tpg-shortcode-main-wrapper .even-grid-item {
        margin-bottom: 0px;
    }

    Original code is adding MARGIN-BOTTOM: 30PX;

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Habib

    (@habibjh)

    Hi, @danicasati

    use ! important or you can nested the class like this-

    body .tpg-shortcode-main-wrapper .masonry-grid-item,
    body .tpg-shortcode-main-wrapper .even-grid-item {
        margin-bottom: 0px;
    }

    or just use ! important like this

    margin-bottom: 0px !important;

    Thread Starter Dani

    (@danicasati)

    Thanks.
    It works.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘List item margin’ is closed to new replies.