Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

Move category below the image in block extended layout

To move the category below the image in the block extended layout add the following CSS code in Divi Theme Option

.et_pb_post_extra.el_dbe_block_extended {
	display: flex;
}
.et_pb_post_extra.el_dbe_block_extended .post-categories {
	position: relative !important;
    	order: 1  !important;
}
.et_pb_post_extra.el_dbe_block_extended .post-meta {
	position: relative !important;
	order: 3 !important;
}
.et_pb_post_extra.el_dbe_block_extended .post-content {
	order: 2 !important;
}