Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

How to display equal images in Divi Blog Extras?

Add the below CSS in Divi Theme Options

@media only screen and (min-width: 981px) {

.el-dbe-blog-extra  .post-media {
    height: 250px !important;
}

.el-dbe-blog-extra  .post-media img {
    object-fit: cover;
}
}