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?        
    
                        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.                    
                
                        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                    
                
                        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
change it to:
Hopefully that will have the effect you want.
Cheers
Allison
                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
                        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;
                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;
                        That should do it!
:)
                :)
                        Brilliant!  thank you so much!                    
                
                        Thank you. I am able to remove the underline from my website.                    
                

