Jop, dieses Theme enthält etliche unsinnige CSS Anweisungen

Suche mal in der style.css nach folgenden Zeilen:
a:link {
color: #3B475A;
background: none;
font: 11px Georgia, "Times New Roman", Times, serif;
text-decoration: none;
}
a:active {
color: #3B475A;
background: none;
font: 11px Georgia, "Times New Roman", Times, serif;
text-decoration: none;
}
a:visited {
color: #3B475A;
background: none;
font: 11px Georgia, "Times New Roman", Times, serif;
text-decoration: none;
}
a:hover {
color: #3B475A;
background: none;
font: 11px Georgia, "Times New Roman", Times, serif;
text-decoration: underline;
}
und ändere das wie folgt ab:
a:link,
a:active,
a:visited,
a:hover {
background-color: transparent;
color: #3B475A;
}
a:link,
a:active,
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}