Tagged: hyperlinks, links
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 :)
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
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