Footer link font colour

Hi,

I’ve been trying to change the links on my footer but nothing seems to work. I can’t get it to change for “email preferences” and "

Unsubscribe from all future emails"

<a class=“hubspot-mergetag” data-unsubscribe=“true” href=“{{ unsubscribe_link }}”>email preferences</a> to choose the types of emails you receive.

<a class=“hubspot-mergetag” data-unsubscribe=“true” href=“{{ unsubscribe_link_all }}” > Unsubscribe from all future emails</a></div>

Adding style=“color: #hexcode;” to the a tag should work. Is that what you’ve tried?

<a class="hubspot-mergetag" data-unsubscribe="true" href="{{ unsubscribe_link }}" style="color: #000000;">email preferences</a> to choose the types of emails you receive.

<a class="hubspot-mergetag" data-unsubscribe="true" href="{{ unsubscribe_link_all }}" style="color: #000000;"> Unsubscribe from all future emails</a></div>

Thank you very much, i see the mistake i made when i trying it.