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)?
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.
If you don’t have a developer you could try reaching out to one of our solutions partners.
This particular issue is something that almost any web developer should be able to assist with so you have options.
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.