I have noticed that all the links on my website that either link to another landing page, anchor link etc have turned the colour purple, please see this page as an example: https://www.privacyengine.io/data-protection-academy
As you can see it makes it harder to read, can someone help me in changing them back their original blue colour (and when you hover over them, orange)?
I can't see any of those issues(purple links for example) but if you (still) see them, open the CSS file of your theme/template and add this code
a:visited{
STYLING FOR VISITED LINKS (if the user clicks on it and comes back)
}
below
a{
STYLING OF YOUR LINKS
}
but keep in mind that this will set this for all of the links - to be more precise add a custom class to this specific menu/module and modify the code above to this:
.CUSTOM-CLASS a:visited{
STYLING GOES HERE
}
For the "white background in the page-builder" thing: HubSpot doesn't render the stylings correctly sometimes (if it's a quite complex theme or if there are multiple sledgehammer (!important-rule) in the CSS which neutralize each other.
I can't see any of those issues(purple links for example) but if you (still) see them, open the CSS file of your theme/template and add this code
a:visited{
STYLING FOR VISITED LINKS (if the user clicks on it and comes back)
}
below
a{
STYLING OF YOUR LINKS
}
but keep in mind that this will set this for all of the links - to be more precise add a custom class to this specific menu/module and modify the code above to this:
.CUSTOM-CLASS a:visited{
STYLING GOES HERE
}
For the "white background in the page-builder" thing: HubSpot doesn't render the stylings correctly sometimes (if it's a quite complex theme or if there are multiple sledgehammer (!important-rule) in the CSS which neutralize each other.
The links are blue. What you are seeing is the visited state for the links. That happens when you personally have been to the URL that is being linked to. It's an accessibility feature of the web. (not specific to HubSpot)
A developer can use CSS to style the links to any colors you want.