[Resolved] Filtered posts class / element spacing

Home Forums Support [Resolved] Filtered posts class / element spacing

Home Forums Support Filtered posts class / element spacing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #142662
    Shane

    I’ve been looking for the simplest way to reduce the space between the end of a blog post/read more… and the meta items like categories, tags and comments listed below. Is this simple enough? Can’t pinpoint the right element to customize in child theme css..

    Also, when a category is selected and blog posts are being filtered by this selection, a box appears at the head/top of the listings.. Is there an easy way to reduce the padding around the title / description listed in this box? Can the title and the description elements be brought closer together as well?

    Lastly, the size of the empty comment box. Can this be made a little smaller by default without affecting anything else?

    Thanks!

    Best theme / Support ever!

    #142673
    bdbrown

    Hi Shane. Give this css a try and see if that’s what you’re after:

    /* move post meta up */
    .inside-article .entry-meta {
        margin-top: 0;
    }
    article .entry-content figure {
        margin-bottom: 0
    }
    
    /* condense blog page title */
    .separate-containers .page-header {
        padding: 5px 15px;
    }
    .separate-containers .page-header .page-title {
        margin-bottom: 0;
    }
    
    /* reduce size of comment box */
    .comment-form-comment {
        width: 50%;
    }
    
    #142837
    Shane

    Just what i was after! Thanks a bunch!

    #142856
    bdbrown

    You’re welcome 🙂

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