Re: Any way to change the link color in a landing page token?

Anonymous
Not applicable

Any way to change the link color in a landing page token?

We have an event landing page and added a token for "Add to My Outlook Calednar" on the Confirmation page. However, the background of our laning page is blue - and the link color of the token is blue.  Any way to change this? 0EM50000000SCjm.jpg
Tags (1)
3 REPLIES 3
Matt_Stone2
Level 9

Re: Any way to change the link color in a landing page token?

You can change that like any link, by using CSS. Even if you can't apply inline style or a class, just control the color from your <head> section.
Anonymous
Not applicable

Re: Any way to change the link color in a landing page token?

Hi Jessica,

Any link by default will change to a blue that is shown in your image after being clicked, however you can colour the style of the link in the WISYWIG Editor for the Token, but that is if you have used a rich text token and not a basic text one. For the coding needed it would look something like this: text-decoration: none; color: #fff; this would be placed in the section called "ADVANCED" in the link section. I've added an image below for you to reference. The alternative method is to add this to the token if editable within the landing page or the XHTML used for the Landing Page.

0EM50000000SDG2.jpg

Hope this helps you out!
Alok_Ramsisaria
Level 10

Re: Any way to change the link color in a landing page token?

Hi Jessica,

Try to use the following CSS;
 
a{ color:#ffffff !important; }

This would help.