To change the colour of your specific link (to white for example), you’ll need to directly add an inline CSS style to your <a> tag.
Here’s how you can modify it to change the link colour (to white in this example):
<h1><a href=“https://[your domain]/[your page]/” style=“color: #FFFFFF; text-decoration: underline;”>[your text]</a></h1>
In this modification, style=”color: #FFFFFF; text-decoration: underline;” is added directly to the <a> tag.
This inline style changes the link color to white (#FFFFFF) and ensures the link is underlined (text-decoration: underline;) to visually distinguish it as a clickable link.
The underline part is optional and can be adjusted based on your design preferences or removed if your site’s style already defines how links should appear.
You can insert this modified HTML into your Elementor Text Editor widget, a Custom HTML widget, or any place where you can input HTML directly. This change will apply only to this specific link, not affecting any other links on your site.