Okay
  Public Ticket #3663514
Portfolio Category Layout Issue
Closed

Comments

  •  1
    linguistrick started the conversation

    Hi there. My portfolio categories are set to three columns, but after the second row, what should continue a 3 column layout goes to two, which pushes the third category into a new row. 

    Category 1 Category 2 Category 3

    Category 4 Category 5

    Category 6


    See attachment for reference. I appreciate any insight here!

    Attached files:  Screenshot 2024-06-09 at 10.50.30.png

  •  294
    Paul replied

    Hello!

    For the display issue, please apply this custom CSS to solve it:

    .portfolio-listing {
        display: flex;
        flex-wrap: wrap;
    }
    .col3 .portfolio-item, 
    .portfolio-category {
        float: none;
    }
    

    I hope it helps! Let me know if you have any further questions.

    Best regards,
    Paul

  •  1
    linguistrick replied

    Thanks Paul! That worked.