I want my hyperlinks bold not underlined
Permalink 1 user found helpful
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
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;
:)