/target-page#section-id
.To link to a section on another page in Webflow using an anchor link, and ensure the top of the section isn't covered by a fixed header, follow these precise steps:
pricing
, features
, etc.) in the ID field. This becomes the anchor.Fixed headers often cover anchored content. You can prevent this in one of two ways:
Select the target section again.
In the Style panel, add a custom CSS property in the page’s Custom Code (Head):
Example (insert in Site Settings > Custom Code > Head):
```
```
Replace 80px
with your header’s height.
Adjust the ID (#pricing
) as needed for each anchored section.
scroll-margin-top
isn't effective (e.g., due to browser quirks)./your-page#your-section-id
/pricing#plans
To link to a section on another Webflow page without it being hidden by a fixed header, use an anchor link with a scroll-margin-top CSS property on the target section. This is the cleanest way to offset content and maintain cross-browser consistency.