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
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