Solved

How to change the colour of personalisation tags in the footer

  • 9 November 2023
  • 3 replies
  • 108 views

Badge +1
  • Contributor III
  • 5 replies

Hi, 

I'm trying to update the colours of various tags in my footer. 

I’ve got the unsubscribe one sorted using <a href ="{% unsubscribe_link %}" style="color: red;">Unsubscribe here.</a> but the moment I try and apply it to {% web_view %} it goes wrong and in preview mode I just get a mess of code. Any suggestions?

Been using this

<a href ="{% web_view %}" style="color: #f5f6f7;">View In Your Browser</a>

Editor​
Preview

Thanks in advance

icon

Best answer by Taylor Tarpley 9 November 2023, 15:53

View original

3 replies

Userlevel 7
Badge +60

Hi @iRob

 

Thanks for sharing your question with us! Happy to help! 

 

Trying using this code instead and see if you have success! 

<a href="{% web_view_link %}" style="color:##f5f6f7;">View On Web</a>

 

Additionally, I’d check out this documentation on our dev portal for more insight!

 

Hope this helps!

-Taylor 

Badge +1

Thanks so much @Taylor Tarpley, I’ll check it out and get back to you asap. 

Badge +1

worked perfectly thank you. just took one of the #s out after the style="color:##f5f6f7. Just in case anyone else is looking. 

Reply