Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1109063

    Hi there,

    I know I can change the color of the hyplerlinks in the settings but: I actually would like to have no specific color for the hyperlinks but the links only in bold. In this way, in case I have some text in white on dark background and some the other way around I do not always have to switch the link color manually via css. However somehow I do not understand how I can achieve that.. So in other words I would like to achieve that the linkcolor in white text passages stays white (but bold) and in black text passages stays black (but in bold)…
    Any ideas?

    Thanks a lot :)

    #1109318

    Hey Raphael,

    You would have to use a class in strong tag for instance:

    <strong class="white">Your text</strong>
    
    strong.white {
      color:#fff;
    }

    The example above is for white, you could do the same thing with another colour.

    Best regards,
    Rikard

    #1109448

    Hey Rikard,

    Found a solution by forcing the color to be “inherit”.

    .avia_textblock a {
    font-weight: bold;
    color: inherit!important;
    text-decoration: none!important;
    }

    Cheers
    Maurice

    #1109660

    Hi Maurice,

    Great, I’m glad that you found a solution and thanks for sharing. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.