Archived topic
Filtered posts class / element spacing
3 replies · Started by Shane on October 7, 2015
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!
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%;
}
Just what i was after! Thanks a bunch!
You're welcome :)
