Skip to main content

Setting Global link color

Completed

Comments

7 comments

  • Alex

    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
  • O E

    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
  • Alex

    Hi,

    you can play with the CSS code. Try this one:

    .brz-rich-text a {
       color: #c36 !important;
    }

    0
  • O E

    That worked perfect, thank you!

    0
  • Alex

    Most welcome!

    0
  • Philipp Wedel
    How would I globally set a dotted, colored line for all links that are linked trough brizy - eg File downloads?
     
    Tried:
    text-decoration-style: dotted;
    color: #852c76 !important;
     
    but that only changes the color, no decoration
    0
  • Alex

    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.