Skip to main content
Contributor III
November 9, 2023
Solved

How to change the colour of personalisation tags in the footer

  • November 9, 2023
  • 3 replies
  • 413 views

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

    This topic has been closed for replies.
    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 

    3 replies

    Taylor Tarpley
    Community Manager
    Community Manager
    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 

    iRobAuthor
    Contributor III
    November 9, 2023

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

    iRobAuthor
    Contributor III
    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.