If the arrow in the first collection item on your projects page is misaligned, it’s likely due to a styling issue caused by margin, padding, flex alignment, or conditional visibility settings.
1. Check Collection Item Structure
- Select the first collection item from the Navigator or Canvas.
- Compare its structure with other items in the same Collection List.
- Ensure that all elements (including the arrow) are present and inside the same parent containers as the rest.
2. Inspect Element Styles
- Select the arrow inside the first collection item.
- Check for any unique classes or combo classes applied only to this instance.
- Look for margin, padding, or positioning overrides that differ from the other arrows.
3. Review Flexbox or Grid Settings
- If the collection item is inside a Flexbox or Grid, inspect its layout settings:
- Ensure that vertical alignment and justify content are consistent for all items.
- For Flexbox: Make sure the align-self or justify-self settings aren’t manually overridden on the first item.
4. Check Conditional Visibility
- Select the arrow and confirm there are no conditional visibility rules (e.g., “Visible only if…”) applied that would only affect the first item.
- If you are using custom code or CMS fields to display/hide elements, check that the first item has the same data structure.
5. Inspect Pseudo-Classes
- Select the element and look for states like :first-child or :nth-child(1) applied in your styles.
- These might unintentionally affect appearance or layout only for the first collection item.
6. Compare Spacing Settings
- Carefully review margins, paddings, widths, and alignments between:
- The container of the arrow
- The arrow element itself
- Ensure that these settings are uniform across all items.
Summary
To fix the arrow misalignment on the first collection item, review styling and layout differences from other items—especially Flexbox settings, margins, and pseudo-class styles. Ensuring uniform structure and styles across all collection items will correct the issue.