Styling Hyperlinks
Setting styles for hyperlinks

Add beginning and ending style tags and then add the hyperlink CSS style code:
<style>
a {
color: #3E8ADB;
}
a:hover {
color: #DB3E99;
text-decoration: underline;
}
/* For other elements in a hyperlink */
a>div {
color: #3E8ADB !important;
}
a>div:hover {
color: #DB3E99 !important;
text-decoration: underline;
}
</style>
We are selecting all anchor tags and all anchor tags that contain a div.
You can change the CSS to suit your needs.
You may or may not need the !important flag. We are using it to make it work across a wider variety of use cases.
Last modified 3yr ago