Suite26 Email Marketing tip 1:
How to change the colour of your links:
Most mail clients and webmail providers will display the links in your email campaigns in the standard blue colour regardless of what colour you set them to in the editor screen. However, there is a trick to get around this for most mail clients.
Go into Edit Primary Content and switch the editor screen into Source view. This can be done by clicking the 'Source' button in the toolbar.
Next, you need to add the following piece of HTML code into the source just after the <head> tag and before the </head> tag:
<style type="text/css">
a { color: red; }
</style>
You can change the colour to suit, e.g. green, or you can use normal HTML hex values for the colour (i.e.; #00CC00). Take a look at this full HTML colour chart with HTML colour codes: www.immigration-usa.com/html_colors.html
This will turn all of the links in your email to your chosen colour for the majority of mail clients and webmail providers except for Gmail and Mail.com. For Gmail and Mail.com you will need to highlight each link in your email campaign and set the colour using the text colour selector within the editor. This solution is not 100% perfect as the line underneath the link within these two webmail providers will often stay in the default blue colour.
Suite26 Email Marketing tip 2:
How to remove the line from underneath your links:
Links display underlined by default in the majority of mail clients, however, you can remove the line underneath the link by adding the following style attribute to your HTML code:
Go into Edit Primary Content and switch the editor screen into Source view. This can be done by clicking the 'Source' button.
Next, you must add the following piece of HTML code into the source just after the <head> tag and before the </head> tag:
<style type="text/css">
a { text-decoration:none }
</style>
To combine the two pieces of HTML code so that your links stay as your selected colour and display without the line underneath, add the following piece of code:
<style type="text/css">
a {color: #00CC00; text-decoration:none}
</style>
If you need any help changing the colour of your links or removing the underline, please email support@26.co.uk or call 0845 313 0912. Read the rest of this entry »