symbol-small
.To style ℠, ™, and ® symbols in your Webflow headings so they appear smaller, lighter, and vertically raised (superscripted), you'll need to apply custom styling that targets these characters specifically.
span
element you can style separately.symbol-small
.If you want this styling to apply automatically to all ™ and ® characters inside specific elements (like headings), you can use an Embed component:
Add an Embed element to your page or paste it in Page Settings > Custom Code > Head.
Use this CSS selector:
h1 span, h2 span, h3 span { font-size: 0.6em; position: relative; top: -0.3em; font-weight: 300; }
Note: This works only if ™/® are already wrapped in spans. Webflow doesn't auto-wrap single characters without manual input.
<sup>
by adding a text span and setting display: inline, smaller font size, then adjusting position.<sup>
tags directly in Designer without using an Embed for custom HTML.To adjust ™ and ® styling in Webflow headings, wrap the symbols in inline spans, give them a specific class like symbol-small
, and then reduce font size, weight, and shift them upward using relative positioning. While not automated by default, this gives you exact control to match your mockup.