Can't remove text decoration

Instead of this:

div #about-con a:link {
  text-decoration: none;
}

Place this:

#about-con a:hover{
  text-decoration: none;
  color: #337ab7;
}

This will make your link text stay the same on hover. Now, if you are talking about the border around the “About Us”, you will have to remove border properties from your #about div.

Leave a Comment