Moving date and category to bottom of blog posts

  • Unknown's avatar

    Hi, please can someone give me the css code to move the date, writer and category of a blog post (currently at the top of each blog post) to beneath a blog post instead? Also, I would like to make this text a bit smaller too. Thank you.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    You could add the following to your custom CSS editor in order to bring that information beneath the listing of tags on your posts:

    .single .entry-header .entry-meta {
    position: absolute;
    bottom: 0;
    display: block;
    font-size: 12px
    }
    
    .single footer.entry-meta {
    margin-bottom: 50px;
    }
    
    @media screen and (max-width: 715px) {
    .single footer.entry-meta {
    margin-bottom: 80px;
    }
    }

    The value of font-size can be increased/decreased to your liking, also.

    Let me know how you get on with that or if you have any further questions.

  • The topic ‘Moving date and category to bottom of blog posts’ is closed to new replies.