Skip to main content

Align to center

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

1.00

Ruman Ahmed

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.

Ruman Ahmed

You can add the CSS to the β€œAdditional CSS” section of your website.

Ruman AhmedΒ thanks, I'll try this

Ruman Ahmed

Natascha VantuykomΒ Sure, hope it will fix the alignment!