Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

How to show category tag on Image in Grid Extended layout?

To move the category on the image in the blog extras grid extended add the following CSS in Divi Theme Options

@media screen and (min-width: 981px) {
.el-dbe-blog-extra > .et_pb_post:nth-child(2n + 1) > .post-content > .post-categories {
    position: absolute;
    bottom: 0;
    right: 0 !important;
    z-index: 999;
    margin: auto;
    width: auto !important;
}

.el-dbe-blog-extra > .et_pb_post:nth-child(2n) > .post-content > .post-categories {
    z-index: 999;
    position: absolute;
    right: 0 !important;
    bottom: 0;
    margin: auto;
}

}

Output