How to remove hyperlink underlines in Simple Blue

Permalink 2 users found helpful
I would like to remove the underlines on my hyperlinks in the Simple Blue theme. I followed the instructions in the posting below, but saw no change.

http://www.concrete5.org/community/forums/usage/i-want-my-hyperlink...

It seems like this should be a straightforward and easier option considering how clunky it looks with that heavy underline.

Any suggestions would be greatly appreciated!

evavra
 
MattGreyDesign replied on at Permalink Best Answer Reply
MattGreyDesign
I had exactly the same problem whilst creating a theme, change the targeted CSS style to:

a, p a, li a, a:visited {
   color: #999;
   text-decoration: none;
   outline: none;
}
a:hover, a:active, a:focus {
   color: #FFF;
   text-decoration: none;
   font-style: normal;
   font-weight: normal;
   font-variant: normal;
   outline: none;
}


But obviously change the colours to your suiting
evavra replied on at Permalink Reply
evavra
Thanks. That worked perfectly. Your prompt reply was much appreciated!

Still seems like the option to omit underlines should be more accessible than delving into the CSS, but am grateful these forums are accessible!
MattGreyDesign replied on at Permalink Reply
MattGreyDesign
Hey could you mark it as the best answer if possible? :) Much appreciated, glad it worked.