Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @neopy,

    I hope you are well today and thank you for your question.

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

    @media (min-width: 768px) {
    
        .archive.category #primary article.post {
            width: 50%;
            margin: 0;
            padding-right: 10px;
            display: inline-block;
            float: left;
        }
        .archive.category #primary article.post .post-inner-content{
            border: 0;
            padding: 0 0 30px;
        }
    
        .archive.category #primary article.post:nth-child(odd){
            padding-right: 25px;
        }
        .archive.category #primary article.post:nth-child(even){
          clear: left;
            padding-left: 25px;
        }
    
        .archive.category #primary ul.pagination {
        clear: both;
        display: block;
        margin: 50px 0;
        float: left;
    }
    }

    Best Regards,
    Movin

    Thread Starter Neopy

    (@neopy)

    Thanks!!

    You are most welcome here ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show posts as grid not list’ is closed to new replies.