• Hello,
    How I can remove showing the first post from the category in bi format? Is it possible to have all the post in 2 columns like we have them below?

    Thank you?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    For removing the first big post and showing it in 2 column, can you go to the Appearance > Customize > Additional CSS in the dashboard and insert the code mentioned below:

    .archive #content .post:first-child {
        float: left;
        width: 48.7013%;
    }
    .archive #content .post:nth-child(2n+1) {
        float: left;
        clear: both;
    }
    .archive #content .post:nth-child(2n) {
        float: right;
        clear: none;
    }

    Thanks.

    Thread Starter vvmdesign

    (@vvmdesign)

    Great, thanks a lot, Rajesh!
    Works perfect, exactly what I wanted!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove the first “big post” from the category page’ is closed to new replies.