Reply To: Space Below Image In Mosaic

Home Forums Support Space Below Image In Mosaic Reply To: Space Below Image In Mosaic

Home Forums Support Space Below Image In Mosaic Reply To: Space Below Image In Mosaic

#210151
Tom
Lead Developer
Lead Developer

Give this CSS a try:

/* When post image is above the title */
.post-image-above-header .post-image {
    margin-top: 0;
    margin-bottom: 2em;
}

/* When post image is below the title */
.post-image {
    margin-top: 2em;
}

/* Space between content and title */
.entry-content, 
.entry-summary, 
.page-content {
    margin-top: 2em;
}

/* Space between footer meta and content */
footer.entry-meta {
    margin-top: 2em;
}

Hope this helps 🙂