• Resolved wpnew2018

    (@wpnew2018)


    I have the following order from top to bottom:
    1 – image
    2 – title
    3 – date
    If one post is shorter than others the date is not aligned at the most bottom.
    Is it possible to do it?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    Should be possible. Any chance you can link us to your site?

    Thread Starter wpnew2018

    (@wpnew2018)

    There is no website.
    I just started learning wp, so I installed in localhost in virtualbox.
    I mean the date is not aligned at the bottom of post if text is less than other posts.

    • This reply was modified 6 years, 4 months ago by wpnew2018.
    Plugin Author Tom

    (@edge22)

    You could try this CSS:

    .wp-show-posts-inner {
        display: flex;
        flex-direction: column;
    }
    
    .wp-show-posts-entry-meta-below-post {
        margin-top: auto;
    }
    Thread Starter wpnew2018

    (@wpnew2018)

    Exactly what I need!
    THANKS!

    Plugin Author Tom

    (@edge22)

    You’re welcome 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Align date at the bottom’ is closed to new replies.