You're trying to center your logo within the navbar, while having 2 menu links on the left and 3 on the right. This is a common symmetrical nav layout and can be done using Webflow’s flexbox tools.
Container
or Div Block
.NavBar
.Inside the main NavBar
, add three Div Blocks:
LeftLinks
Logo
RightLinks
The purpose is to balance the center logo between the left and right link groups.
Add 2 link blocks or text links inside LeftLinks
.
Add 3 link blocks or text links inside RightLinks
.
Style them appropriately (padding, font, etc.) so they take up similar widths if possible, which helps visually center the logo.
Logo
div.Logo
has auto width, and the Logo itself is:Align: Center
on the parent Flex container.If exact symmetry is critical regardless of unequal link widths:
NavBar
to Position: Relative.Logo
div to Position: Absolute → Left: 50% + Transform: TranslateX(-50%).To center your logo in the navbar with links on both sides, use three divs (Left, Logo, Right) inside a flex container with space-between justification. This aligns the logo centrally when left and right link groups are visually balanced. For exact centering regardless of content width, use absolute positioning and transform translate techniques.