Smaller Icons on Mobile

Since I want to list 50+ Members, it would be great if there was an option to fit 3-4 members horizontally with circular icons.

1 Like

Hi there, @user20659 and welcome aboard :waving_hand:

Unfortunately, there is no way to display more than 2 columns on mobile. If 2 columns work for your case too, please use this code in the Custom CSS field on the Style tab of your widget’s settings :slightly_smiling_face:

.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%;
  }
}
1 Like