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

HTML How to Make a Website CSS: Cascading Style Sheets Center the Wrapper

Will not center.

the wrapper isn't working for some reason. can someone take a look to help me out?

https://w.trhou.se/qie1prt0ib

Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Sorry, I'm trying to look, but I'm getting an error saying that the snapshot no longer exits. Can you please make a new snapshot and post it? Thanks! :sparkles:

1 Answer

Hi your link is not working But I guess that you have coded like this :smile: :

        <li><a href="Index.html" id="logo" > Portfolio</a></li>
        <li><a href="about.html"> About</a></li>
        <li><a href="contact.html"> Contact</a></li>

    </ul>
</nav>

the answer is :

     <header>

<a href="Index.html" id="logo"> /* HERE!!! YOU HAVE TO PUT ID!!*/
    <h1>YOUR NAME</h1>
    <h2>Designer</h2>
</a>

<nav>
    <ul>
        <li><a href="Index.html" > Portfolio</a></li> /*NOT HERE!! :D*/
        <li><a href="about.html"> About</a></li>
        <li><a href="contact.html"> Contact</a></li>

    </ul>
</nav>

    </ul>
</nav>

:smile: