I know sometimes it's hard to get a reply, I've been waiting since march 11th I think for a question I had entered in. It seems Ryan has a lot going on, which I understand, with these great themes.
I came accross your question when checking to see if I got a reply and just figures I'd try and help you. So…
Go to your WP Dashboard > Appearance > Editer > style.php
Find this styling…
.postwrap a:link, .postwrap a:visited, .postwrap a:active {
text-decoration:none;
color: #<?php echo $flex_link_color; ?>;
border:0;
-moz-outline-style:none;
}
Change text decoration:none; to > text decoration:underline;
This will underline ALL links in your posts including title tags.
Alternatively, if you just want the links within the body text of the post underlined you can…
- open the post you have the link in to edit it. (make sure it's in HTML mode and NOT visual)
- Find the link in question. Something like <a href="http://www.webiste.com">Your anchor text</a>
- Add this to it. style="text-decoration:underline;"
- Should look like this…<a style="text-decoration:underline;" href="http://www.webiste.com">Your anchor text</a>
The second option will have to be added maually to EVERY link in every post. This is what you want if you don't want your titles to be underlined.
Hope this helps.