
Vá em Tema > Editar HTML > Aperte CTRL + F e pesquise por a:link { e você achará algo mais ou menos assim:
a:link {Apague todo esse trecho e o substitua por:
text-decoration:none;
color: $(link.color);
}
a:visited {
text-decoration:none;
color: $(link.visited.color);
}
a:hover {
text-decoration:underline;
color: $(link.hover.color);
}
a:link {Prontinho, agora é só trocar as cores pelas de sua preferência. Veja essa tabela aqui para te ajudar melhor
color: #E9A1C0; /* Cor do link*/
text-decoration: none;
-webkit-transition: color 0.7s ease-out;-moz-transition:
color 0.7s ease-out;transition: color 0.7s ease-out;
}
a:visited {
color: #33CCCC; /*Cor dos links visitados*/
text-decoration:none;
filter:alpha(opacity=100);
-moz-opacity: 1; -khtml-opacity: 1; opacity: 1;
}
a:hover {
color: #707070; /*Cor do link quando passa o mouse*/
text-decoration:none;
filter:alpha(opacity=100);
-moz-opacity: 1; -khtml-opacity: 1; opacity: 1;
}

.sidebar .widget a:link {E para remover o sublinhado é só procurar por a:hover { e logo abaixo terá: text-decoration:underline; troque o underline por none e prontinho.
color: $(widget.link.color);
text-decoration: none;
}
.sidebar .widget a:visited {
color: $(widget.link.visited.color);
}
.sidebar .widget a:hover {
color: $(widget.link.color);
text-decoration: underline;
}
Disponível para reblogar