https://codepen.io/Ausjwill/pen/GRRaZeJ

https://codepen.io/Ausjwill/pen/GRRaZeJ

I’m almost done with my personal portfolio project. The only thing holding me up is I cannot seem to figure out why my contact links at the bottom won’t change color. I can change the color of the hover on them, but not the standard color. Any help is greatly appreciated!

Hello there.

You have a few syntax errors in your code. Use the built-in analyser in CodePen to help you find them.

Hope this helps

HTML syntax

  • the <li> tag on line 12 is missing a matching closing </li> tag
  • line 31, tag <div class="projects-grid"> is missing matching closing tag
  • line 47, 63, 79, 95, the </br> is wrong, br is self closing, so just <br>
  • line 54/58, that image element has two alt attributes, it should have only one.
  • line 103, tag </i> is missing matching opening tag
  • line 103, tag <h2 class="profile-link"> is missing matching closing tag
  • lines 98/104, you can’t nest an h2 element insine an a element
  • line 112, </div> is missing matching opening tag
  • line 117, <p> tag is missing matching closing tag

CSS syntax

  • .contact-section selector used twice, once on line 125, once on line 133, you should combine them

Thanks so much! I believe I have corrected all syntax errors. I have just 2 questions:

1: For my “See all of my projects” link I am able to change the size of the text, but it won’t align center or apply padding underneath.

2: I am still unable to change the color of my contact links at the bottom