Changing the hyperlink (on click) colour

David Moag

New Member
Hi, where do I change the [UNSUBSCRIBE_LINK] hyperlink colour (when clicked) in templates that I send out. The colour is blue at the moment but the background I use in my templates is also blue so the link cannot be seen very well. I would like to change it to white or yellow.
 
@David Moag - you can change it from css, in between the <head> and </head> tags of your template you can add:
Code:
<style>
a, a:hover {
color: red;
}
</style>
Change red with whatever color you like, i.e: white
 
Back
Top