<h2 id="section-1">Title</h2>
.page-url#section-1
in your site, or use JavaScript to auto-generate IDs for headings if needed.To enable external linking to specific sections inside a Rich Text Field (RTF) in Webflow, you need to add custom ID attributes to elements within the RTF content. Webflow’s native tools don’t support ID assignment directly inside CMS Rich Text, but here’s how to do it using custom code and/or the Embed component.
<h2 id="section-1">My Section Title</h2>
yourpage.com/post#section-1
.<div id="my-anchor">Content here</div>
<a id="jump-here"></a>
before a block or heading.h2
, h3
, etc.) or paragraphs with IDs as needed.https://yourdomain.com/post-slug#my-anchor
.w-richtext h2
and set id
attributes dynamically (requires coding knowledge).To link to specific parts inside a Rich Text Field in Webflow, use the Embed component within the RTF to insert HTML elements with unique ID attributes, then link to them using #id-name
in the URL. This allows precise in-page navigation even inside dynamic CMS posts.