Hyperlink a Form Field Label
How to hyperlink a field label on a form to make a link look like a link


The CSS
We apply the blue link color to the text and have it underline on hover.
The HTML
The html lives in the field label itself and can wrap whatever text you would like to link. We used the external link icon to reinforce the idea that this is an external link.
How to Implement
Copy pasta the CSS. This styling will apply to all form-links
Open the Field Label you want to update with html

Use an <a> tag to set the html class
Define your link
Determine if you want to open the link in a new tab, if so then add target="_blank"
and be sure to close the html tag
In between the <a> </a> tags set your desired link text
Lastly, add a relevant fa icon to your link
Last updated
Was this helpful?