Show Archive Page Featured Images on Left of Post Extract

Written by Dan Mossop

An earlier post covered how to show blog module featured images to the left of the post text in the Divi theme. Here's the equivalent CSS for doing the same thing on the standard category / archive / search pages:

/* Place category / archive / search images on left of text */
/* src: https://divibooster.com/show-archive-page-featured-images-on-left-of-post-extract/ */
@media only screen and (min-width: 981px) {

	body.archive .et_pb_post img,
	body.search .et_pb_post img {
		height: 180px !important;
		width: 335px;
		float: left;
		left: 0;
		margin-right: 25px;
	}

	body.archive .et_pb_post,
	body.search .et_pb_post { 
	    clear: both; 
	    min-height: 180px 
	}

	/* Move text over when there is no thumbnail */
	body.archive .et_pb_post:not(.has-post-thumbnail) {
	    margin-left: 360px;
	}

}
The final block of CSS that starts "/* Move text over…" re-positions the text even if there isn't an image available, so that the text lines up the same for every item. You may wish to delete this if you'd like to keep extracts with no image as full width.

Supercharge Your Post Layouts with WP Magic CTAs!

Enhance your archive and category pages in Divi with AI-generated CTAs. With WP Magic CTAs, transform each post with a customized call-to-action, driving engagement where it's needed most. Perfect for promoting offers and optimizing your site's flow. Enjoy 50% off until Sept 5!

About Dan Mossop

Dan is a Scottish-born web developer, now living in Brisbane with his wife and son. He has been sharing tips and helping users with Divi since 2014. He created Divi Booster, the first Divi plugin, and continues to develop it along with 20+ other Divi plugins. Dan has a PhD in Computer Science, a background in web security and likes a lot of stuff, 

5 Comments

  1. Recently Fixed one of my clients issues thanks man

    Reply
  2. Hey, Dan. This works great, but is there a way to maintain the proper aspect ratio on the thumbnails of the featured images? I've made some adjustments to the height to accommodate a tall image on a new post, and now it's (obviously) stretching thumbnails for other posts on the page. ???

    Reply
    • Hey Bill! You can use the object-fit CSS property for this, e.g.

      body.archive .et_pb_post img,
      body.search .et_pb_post img {
          object-fit: cover !important;
      }
      

      The width / height you have specified defines a "bounding box" area for the image and normally the image is stretched / shrunk to fit this area exactly (equivalent to "object-fit: fill"). A value of "cover" instead preserves the aspect ratio of the image and generally results in the image being resized and cropped in one of its dimensions so that the result covers the bounding box without any distortion. Another value you could use is "contain" which ensures that the aspect ratio is maintained and the image shrunk to fully fit within the bounding box (which means the image may be smaller in one of its dimensions that the bounding box).

      I hope that makes sense!

      Reply
      • Hello Dan, that was exactly what I needed. Object fit solution solved my problem with streched featured image on Divi archive pages.
        Thank you so much!!!

        Reply
        • Great! I'm glad that helped, and thanks for letting me know!

          Reply

Submit a Comment

Comments are manually moderated and approved at the time they are answered. A preview is shown while pending but may disappear if your are cookies cleared - don't worry though, the comment is still in the queue.

Your email address will not be published. Required fields are marked *.

We may earn a commission when you visit links on our website.