Site logo

Archived topic

How to decrease gap between title/meta and image/excerpt in archive pages?

5 replies · Started by Alan Gautham on December 17, 2018

Viewing posts 1–6 of 6

Please provide css to decrease space between title/meta data and image/excerpt(image aligned left) in blog posts of archive pages.
Image

Hi Leo...ThanQ for your reply...now I am using the following css,

.post-image-below-header.post-image-aligned-left .inside-article .post-image {
    margin-top: 1.0em;
}
.entry-summary {
    margin-top: 1.0em;
}

This looks good on the desktop but on tablet and mobile view the gap between image entry summary is more. How to reduce that?

Try this:

@media (max-width: 768px) {
    .post-image-aligned-left .post-image, .post-image-aligned-right .post-image {
        margin: 1em 0;
    }
}

Thanks a lot...its perfect now...:)

Glad I could help :)

This archived topic is closed to new replies.