I want my hyperlinks bold not underlined

Permalink 1 user found helpful
How do I change the hyperlinks to a bold font and not an underline?

 
12345j replied on at Permalink Reply
12345j
Go to dashboard/pages themes/clearview customize then a window should pop up, select the a style and you should be able to do it from there.
kolson replied on at Permalink Reply
I can't find any place where can remove the Underline from a Hyperlink in Clear View - and yes, I did go to customize under theme and can change lots, but not that. Help
mexicanred replied on at Permalink Best Answer Reply
mexicanred
Hi Kolson,
I don't have the clearview theme on any of my sites but I have just had a look at the demo and I think I can see where you can alter this if you have experience of html/css.
You will need to get the theme typography.css file and modify it a little.
This file will be in the themes/clearview directory.
Open it in an html editor and look for
a
{
color: #005b7f;
text-decoration: underline;
}


change it to:

a
{
color: #005b7f;
text-decoration: none;
font-weight:bold;
}


Hopefully that will have the effect you want.
Cheers
Allison
kolson replied on at Permalink Reply
What I found is:
a {
/* customize_link */ color: #005B7F; /* customize_link */
text-decoration: underline;
}
a:focus,
a:hover { /* customize_link_hover */ color: #284355; /* customize_link_hover */ }

you're saying I just need to get rid of "underline" and replace it with

none;
font-weight:bold;
mexicanred replied on at Permalink Reply
mexicanred
That should do it!
:)
kolson replied on at Permalink Reply
Brilliant! thank you so much!
aleamio replied on at Permalink Reply
Thank you. I am able to remove the underline from my website.