Black Friday Super Sale 2024 is Coming Soon

WIN AN iPAD, LIFETIME MEMBERSHIP
×

Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

How do I move the title below the image in Divi Blog Extras’ classic layout?

To move the title below the image in Divi Blog Extras’ classic layout using CSS, you can use the following code:

.et_pb_posts .el-dbe-blog-extra .et_pb_post {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.et_pb_posts .el-dbe-blog-extra .et_pb_post>p.post-meta {
    order: 1 !important;
}

.et_pb_posts .el-dbe-blog-extra .et_pb_post h2.entry-title {
    order: 3 !important;
}



.et_pb_posts .el-dbe-blog-extra .et_pb_post .post-media {
    order: 2 !important;
}
.et_pb_posts .el-dbe-blog-extra .et_pb_post p.post-meta:last-child {
    order: 5 !important;
}

.et_pb_posts .el-dbe-blog-extra .et_pb_post .post-content {
    order: 4 !important;
}