Adding link styling to Custom CSS on a Form - reCATCHA Google links | Community
Skip to main content
New Participant
November 29, 2022
Solved

Adding link styling to Custom CSS on a Form - reCATCHA Google links

  • November 29, 2022
  • 1 reply
  • 3534 views

When I enabled reCAPTCHA on one of my client's forms, the 2 links are styled like this if the form is on a Marketo Landing Page (blue - and underlined when hovered over):

This is the page: 
go.netsertive.com/2022-12-07WebinarUnderstandingConnectedTVAdvertisingforFranchiseBrands_RegLP.html

 

But for forms embedded on website pages, there is no styling on the links at all. They look like this:

The above is from this page:
https://www.netsertive.com/contact-us

 

Could I fix this by adding link styling to the custom CSS on the forms? If so, would someone be able to provide the code I would need to add? I don't know how to code CSS. 



Best answer by SanfordWhiteman

For this particular case, because there’s this very generic style on all <a> tags:

a { color: inherit; }

you can override with:

.mktoCaptchaDisclaimer a { color: #249BD2; }

 

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
New Participant
November 30, 2022

For this particular case, because there’s this very generic style on all <a> tags:

a { color: inherit; }

you can override with:

.mktoCaptchaDisclaimer a { color: #249BD2; }

 

New Participant
December 1, 2022

Perfect - and so easy! Thank you, Sandy!!