Option to adjust number of columns on grid
Folks, our former Wishlist portal, where our users shared their requests and suggestions, was transferred to this forum. You’re most welcome to vote, add new ideas, and leave your comments here — we surely will consider them all! ![]()
Original Votes: 2
I would add to this request by allowing any odd grid items where 1 or 2 cannot fit on the line specifically to be centered rather than just off to the one side… It feels uneven when you have 3 on one line 1 or 2 on the bottom but an open space next to it.
I too request to have smaller “squares” for each employee just to get 5 in a column.
Hello friends, @KeyframeKreations, @user3708 ![]()
Thank you for your feedback!
Just in case, I’d like to note that you can change the number of cards displayed by changing the width value in the settings:
If you’d like to keep your widget width and make the member cards smaller, you can do this using a code in the Custom CSS field on the Style tab of your widget’s settings. ![]()
3 cards in a row on desktop:
@media (min-width: 500px) {
.eapp-team-showcase-grid-item {
width: 30% !important;
}
}
5 cards in a row on desktop
@media (min-width: 500px) {
.eapp-team-showcase-grid-item {
width: 20% !important;
}
}
Unfortunately it’s impossible to display more than 2 members per row on mobile in a neat way. If 2 members option works for you, feel free to use this CSS code for the mobile version:
.eapp-team-showcase-grid-item {
max-width: 25%;
}
.eapp-team-showcase-member-card-info-component {
max-width: 100%;
}
@media (max-width: 700px) {
.eapp-team-showcase-grid-item {
max-width: 50%;
}
}
Hi there, @user3708 ![]()
Apologies for the inconvenience!
You’re right, unfortunately it’s impossible to display more than 2 members per row on mobile in a neat way. If 2 members option works for you, feel free to use this CSS code for the mobile version:
.eapp-team-showcase-grid-item {
max-width: 25%;
}
.eapp-team-showcase-member-card-info-component {
max-width: 100%;
}
@media (max-width: 700px) {
.eapp-team-showcase-grid-item {
max-width: 50%;
}
}
And here is the adjusted code to display 5 members per row on desktop only:
@media (min-width: 500px) {
.eapp-team-showcase-grid-item {
width: 20% !important;
}
}

