If you are experiencing issues with hyperlink colors (e.g., the color does not update correctly, or the underline color differs from the text), you can control the styling using one of the following methods, ranging from basic settings to advanced custom coding.
Method 1: Global Body Settings (Best for consistency)
To ensure all links in your email share the same color by default: 1. Click on the Body tab in the settings panel (ensure no specific content block is selected). 2. Locate the General or Links section. 3. Set the default Link Color for the entire template.
Method 2: Direct Formatting (For specific links)
If you need to style a specific link differently from the global default: 1. In your text block, highlight only the hyperlink text itself (avoid selecting surrounding text). 2. Click the Text Color icon in the formatting toolbar and select your desired color.
Method 3: HTML Code Element (For full control)
Standard text elements may sometimes override specific styling properties. For guaranteed consistency, specifically regarding underline colors, use an HTML code element instead of a paragraph element.
Insert your link using inline CSS as shown below:
<a href="https://your-link.com" style="color: #ff0000; text-decoration-color: #ff0000;">
Your link text
</a>
Key properties: * color: Controls the text color. * text-decoration-color: Controls the underline color.
Comments
0 comments
Please sign in to leave a comment.