@Ruth helped me via a message. With this code:
a:hover, a:hover:visited {
color: #469AC9;
text-decoration: underline;
box-shadow: 0 -1px 0 #469AC9 inset;
}
.bbc_link:hover {
color: #469AC9;
/* box-shadow: 0 -1px 0 #469AC9 inset; */
text-decoration: underline;
}
...it works, but why?
My custom.css now looks at this:
a, a:link, a:visited {
color: #469AC9;
text-decoration: none;
}
a:hover, a:hover:visited {
color: #469AC9;
text-decoration: underline;
box-shadow: 0 -1px 0 #469AC9 inset;
}
.signature a:hover {
text-decoration: underline;
}
a.new_win:link, a.new_win:visited {
color: #469AC9;
}
a.new_win:link:hover, a.new_win:visited:hover {
text-decoration: underline;
}
.bbc_link:link, .bbc_link:visited, {
color: #469AC9;
box-shadow: 0 -1px 0 #cedccb inset;
text-decoration: underline;
}
.bbc_link:hover {
color: #469AC9;
text-decoration: underline;
}
.ic_section_header>a:visited {
color: #666;
}
Is there still a mistake in the code? Something I should optimize? The code seems to work though.
Edit: No, not working. There must be a mistake. In board index the links now are double underlined and in the table with recent topics above my index the underline is much thicker then in the posts.