How to make links bold

Hello,
I am trying to make paragraph links bold.
I have added the below CSS to change the styles.
I have attempted to use
font-weight:bold
font-weight:#
I have also attempted to use
font-size: 60px (just to see if the size would change).

a:link {
color: black;
}

a:visited {
color: black;
}

a:hover {
color: #77A3A6;
text-decoration: none;
}

a:active {
color: black;
}

Hey David,

Do you mind sharing the URL of the site so we can take a look?

Ben

[Content Hidden]

Hey David,

I tried this on your site and it works just fine.

a:link {
  color: black;
  font-weight: bold;
}

Try clearing the BB cache as well as any other caching plugin you have installed.

Ben

I added the code to the visited link. Thanks. It is working now.

Awesome! Have fun with BB! :slight_smile:

Ben