Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

How to display category along with meta in Block Extended?

To change the category position along with meta data in Block Extended, add the following CSS 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: 3 !important;
}
.et_pb_post_extra.el_dbe_block_extended .post-meta {
	position: relative !important;
	order: 2 !important;
}
.et_pb_post_extra.el_dbe_block_extended .post-content {
	order: 1 !important;
}