Blue text links - how to change

I’m also wondering - my team is currently in a transitional phase, using a Builder site through a proxy. When publishing, any text that is a link turns into a blue hyperlink. Is there any way to override this? I’m looking for a more elegant solution (maybe the link turning bold or darker/lighter).

Thanks in advance!

Hi @lenapgl! Thanks for reaching out.

To remove the blue color from links, you can select the links and navigate to the styles tab. From here, scroll down to the custom CSS properties section and add this styling:

text-decoration: none;

If you would like to add certain styling for all links (e.g. bold), you can navigate to the data tab and scroll down to the “content JS/CSS” section. In the CSS section, add this styling:

a {
font-weight: bold;
}

This will make all links bold. You can add any other styling here also (e.g. color or text decoration). Let us know if you have any other questions!

1 Like

Works like a charm! Thank you so much, Maddy!