MyBB Community Forums

Full Version: How to change colour of hyperlinks?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On this Mybb-forum i notice that if I move the mouse on a hyperlink, its getting underlined and the colour of de link change to orange/yellow.
On my forum it's just getting underlined; de colour does'nt change at all.

What should I do to change the colour of hyperlinks if moving the mouse on it?
It's css, you need to change the global.css file of your theme.
https://www.w3schools.com/css/css_link.asp
Thanks a lot; it works!
This is the code you need to change:

a:link {
color: #0072BC;
text-decoration: none;
}

a:visited {
color: #0072BC;
text-decoration: none;
}

a:hover,
a:active {
color: #0072BC;
text-decoration: underline;
}

just change the color code to what you want.