• Resolved Nessan Cleary

    (@nessan-cleary)


    Hi,
    I need some help with the layout on my blog at nessancleary.co.uk.
    I’d like to remove a couple of lines from the end of each post on the front page – specifically the lines that start ‘Posted in’ and ‘Tagged’. I don’t want to remove these lines from the posts themselves, only from the front page, because I want to shorten the gap between posts and remove some of the white space.
    I’d be grateful for any suggestions.
    Thanks,
    Nessan

Viewing 2 replies - 1 through 2 (of 2 total)
  • Since you have Jetpack installed, so make sure to enable the Custom CSS module and use this code below in its setting page (Edit CSS).

    To remove all those lines from the front page including also the comment link (Leave a comment), use this code:

    .home.blog .entry-info { display: none; }

    To keep the comment link, use this code:

    .home.blog .cat-links,
    .home.blog .tag-links { display: none; }
    .home.blog .comments-link { overflow: hidden; }

    To further remove some more space between posts

    .home.blog .hentry { margin-bottom: 30px; }

    (change 30px to your own)

    Thread Starter Nessan Cleary

    (@nessan-cleary)

    Hi Paulwpxp,
    Thanks very much for your help – that’s exactly the effect that I was after.
    All the best,
    Nessan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Posted in and Tagged lines’ is closed to new replies.