Comments billwelsh started the conversationOctober 26, 2023 at 3:20amI have created 6 portfolio categories and selected 3 columns as the option. However it displays them:Top row: 3Second row: 2Bottom row:1Would like to have 2 columns of 3, but can't find where the issue is. I added a 7th to see what would happen and it did 3,2,2.Actionadmin repliedOctober 28, 2023 at 3:23amcould I please get some help on this? 295Paul repliedOctober 28, 2023 at 12:04pmHello!Please try applying this custom CSS to fix the issue: .portfolio-listing { display: flex; flex-wrap: wrap; } .col3 .portfolio-item, .portfolio-category { float: none; } I hope it helps!Regards,Paulwelshiv repliedOctober 29, 2023 at 11:34pmThat worked - thank you!Any insight as to why that was necessary? Thanks again 295Paul repliedNovember 1, 2023 at 8:25amHappy to hear that!The issue was simply a CSS bug related to the 'float' property used in the theme. Switching to a flexbox layout resolved it. Sign in to reply ...
I have created 6 portfolio categories and selected 3 columns as the option. However it displays them:
Top row: 3
Second row: 2
Bottom row:1
Would like to have 2 columns of 3, but can't find where the issue is. I added a 7th to see what would happen and it did 3,2,2.
could I please get some help on this?
Hello!
Please try applying this custom CSS to fix the issue:
I hope it helps!
Regards,
Paul
That worked - thank you!
Any insight as to why that was necessary? Thanks again
Happy to hear that!
The issue was simply a CSS bug related to the 'float' property used in the theme. Switching to a flexbox layout resolved it.