Any way to change the link color in a landing page token? | Community
Skip to main content
July 25, 2014
Question

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

  • July 25, 2014
  • 3 replies
  • 2314 views
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?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

3 replies

Matt_Stone2
Level 9
July 25, 2014
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.
July 28, 2014
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.



Hope this helps you out!
Level 10
July 28, 2014
Hi Jessica,

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

This would help.