Setting Global link color
CompletedHello, I'm sure this is addressed somewhere but I can't seem to find it.
How do I set the global colors for Brizy builder hyprlinks? I tried setting link color in /wp-admin/customize.php but it's having no effect.
Please point me in the right direction.
~O
-
Hi,
there is no option to change this globally. You can select the link and add a different color directly in the builder: https://jmp.sh/y7ZHRGl
If you want to do this for all the links on the site, then you can do it with custom CSS. Something like this should help you:
a {
color: #c36 !important;
}If you want to apply color only to certain links then you can add a CSS class to each link and modify the CSS code as you need.
0 -
Cheers Alex. The issue with that solution is that it changes all links. Is there a way to limit it to the text in paragraphs and not menus, buttons etc.?
0 -
Hi,
you can play with the CSS code. Try this one:
.brz-rich-text a {
color: #c36 !important;
}0 -
That worked perfect, thank you!
0 -
Most welcome!
0 -
How would I globally set a dotted, colored line for all links that are linked trough brizy - eg File downloads?but that only changes the color, no decoration0
-
Hi Philipp,
try to use this style and let us know if that worked for you.
text-decoration: underline dotted;
0
Please sign in to leave a comment.
Comments
7 comments