Align to center
When I show my team, how can I align to center when I have less than 3 teammembers?

You can center the team members by limiting the grid width and centering the container, so when there are fewer items, they donβt stretch full width.
Try this CSS:
.fcal_calendar_wrapper .fcal_team_body,
.fcal_teams .fcal_team_body {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
max-width: 700px !important;
margin: 0 auto !important;
justify-content: center;
}
This way, if you have 1 or 2 team members, theyβll stay nicely centered instead of spreading across the full row.
If it still feels slightly off, you can tweak the max-width (e.g., 600px or 500px) depending on how wide each card is.
You can add the CSS to the βAdditional CSSβ section of your website.
Ruman AhmedΒ thanks, I'll try this
Natascha VantuykomΒ Sure, hope it will fix the alignment!