My site is castlefairchild.com. I'm using modified default and this is the area that will underline everything or nothing in the css ( I know hover is in it - but it's default - not hover)
a, h2 a:hover, h3 a:hover {
color: #147;
text-decoration: none;
}
it's followed by this:
a:hover {
color: #147;
text-decoration: underline;
}
This made no links underlined anywhere, which was fine except I wanted only links in the post text to underline...I searched the forums until I found
.post a{
text-decoration: underline;
}
but that underlines my post title, category at bottom of post and leave a comment line since those are technically links too.
I'm not good at code, but I find the area and alter it - so I'm not sure how to set classes.