У меня такая же проблема. В моем CSS я использовал:
/* Links */
a, a:link, a:visited, a:active{
cursor: pointer;
text-decoration:none;
color: #353535;
font-weight: bold
}
a:hover{
text-decoration: none;
}
a:focus {
outline: none;
}
а потом:
#my-content .txt a{
color: #BF3232;
font-weight: normal;
cursor: default;
text-decoration: none;
}
#my-content .txt a:hover{
text-decoration: none;
}
Это сработало для меня.
Приветствие.