Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

Move meta content below the feature image in the Block Extended layout

To move the meta after the feature image in the Block Extended layout follow these steps:

  1. For Page-Specific Changes:
    • Paste the following code into the page settings, typically in the custom CSS area for that specific page.
  2. For Site-Wide Changes:
    • Navigate to the Divi Theme Options.
    • Go to the Custom CSS area.
    • Paste the same code into the Custom CSS box.
.et_pb_post_extra.el_dbe_block_extended.image-top .post-meta {
    order: 1 !important;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
}
.et_pb_post_extra.el_dbe_block_extended.image-top .post-content {
    order: 2 !important;
    padding-top: 0;
}

Output: