Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

About and Contact pages aren't linking

From the Portfolio page when the About and Contact links are clicked the respective pages don't link to navigate to those pages. https://w.trhou.se/g4lmry4m9h

Well without some code it's hard to help you.

2 Answers

Hi Kristin, The links for about.html and contact.html are incomplete. You have ahref, where it should be ahref=

Take a look at the first link, index.html, and that will show you what you are missing.

SJ I changed them and added the = only to the lines that have class="selected" in them and it didn't work. https://w.trhou.se/hf813n8wy5

Does your code look like this?

<ul>
          <li><a href="index.html" class="selected">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>

Thank you SJ it works now!

Sweet!