Skip to main content
All CollectionsTroubleshooting and FAQsFrequently Asked QuestionsBlog Module
How to Reposition the Published Date on Top of the Post's Featured Image in the Blog Module
How to Reposition the Published Date on Top of the Post's Featured Image in the Blog Module

Change the default Publish date's default position on the Blog Module.

Updated over a week ago

The Blog module will display the post's published date inside the Meta text, below the post's featured image.

The following customization will change the Publish Date position, placing it on top of the post's Featured Image.

  1. Open the Blog module settings

  2. Go to Design Tab β†’ Layout

  3. Choose Grid

  4. Go to the Advanced tab β†’ Custom CSS β†’ Free-Form CSS

  5. Copy and Paste the following CSS snippet:

    selector .et_pb_blog_grid .et_pb_post {
    position: relative;
    }

    selector .et_pb_blog_grid .et_pb_post .post-meta span.published {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    background: lightgreen;
    padding: 5px 10px;
    margin: 10px;
    border-radius: 30px;
    }

Notes:

Reposition the Published Date on top of the Featured Image in the Blog Module
Did this answer your question?