Okay
  Public Ticket #4544358
home page layout
Closed

Comments

  •  1
    Alchymister started the conversation

    Hi,

    Could you please advise how to fix a column layout problem? Currently:

    • First row: 3 columns
    • Second row: 2 columns
    • Third row: only 1 column

    Why is the very last category not appearing in the second row?

    Also, when there’s only a 2-column layout, it looks even worse (see screenshot).

    How can I fix this?

    Thank you!

    Attached files:  Screenshot 2026-02-18 at 15.50.35.png
      Screenshot 2026-02-18 at 15.51.38.png

  •  309
    Paul replied

    Hello,

    To fix the display problem, please apply this custom CSS:

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

    I hope this helps. Please let me know if you have any further questions.

    Best regards,
    Paul

  •  1
    Alchymister replied

    thanky you, it works!

  •  309
    Paul replied

    You're welcome!