Skip to main content
Solved

How to change the colour of personalisation tags in the footer


Forum|alt.badge.img+2
  • 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

Best answer by Taylor Tarpley

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 

View original
Did this topic or the replies in the thread help you find an answer to your question?

3 replies

Taylor Tarpley
Community Manager
Forum|alt.badge.img+60
  • Community Manager
  • 2148 replies
  • Answer
  • November 9, 2023

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 


Forum|alt.badge.img+2
  • Author
  • Contributor III
  • 5 replies
  • November 9, 2023

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


Forum|alt.badge.img+2
  • Author
  • Contributor III
  • 5 replies
  • November 9, 2023

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