[Resolved] Extra Gap coming after post titles

Home Forums Support [Resolved] Extra Gap coming after post titles

Home Forums Support Extra Gap coming after post titles

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1410570
    Amit

    I can see some extra gap coming after post titles in desktop whereas if seen in mobile, that gap is pretty less from bottom. I use WP-show posts for this view. Please help me in aligning that gap.
    But few days back, this was not a problem and I don’t even remember if had made any change to something related to that.

    #1410803
    David
    Staff
    Customer Support

    Hi there,

    you can reduce the gap on all WPSP posts with this CSS:

    .wp-show-posts-columns .wp-show-posts-inner {
        margin-bottom: 1.5em !important;
    }

    If you want to apply that only on desktop then do this instead:

    @media(min-width: 769px) {
        .wp-show-posts-columns .wp-show-posts-inner {
            margin-bottom: 1.5em !important;
        }
    }
    #1412095
    Amit

    That worked!

    #1412429
    David
    Staff
    Customer Support

    Glad to hear that

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