Links are not underlined in your side navigation because of the following entry in your theme’s style.css file:
a:link ,a:active ,a:visited {
text-decoration: none;
border: none;
text-decoration: none;
}
Removing “text-decoration:none;” (both times) will enable underlines on all links. To enable underlined links for just the content area of your page, add this code to style.css:
entry a {
text-decoration: underline;
}