Hello again, I would like to change link color and styling, I have this CSS code in use but it does not change everything, hover color remains red and underlining is coming under text even when using text-decoration: none;
so what is the right trick here?
a {
color: #2161a9;
text-decoration: none;
}
a:hover, a:focus, a:active {
color: #2161a9;
text-decoration: none;
}
a:focus, a:hover, a:active, a:visited {
outline: none;
text-decoration: none;
color: #2161a9;
}