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

Including External CSS video Question

In the video, when Nick refreshes his page in workspaces, the bullet points disappear. This is not happening in mine. Am I missing something? Thanks!

Here is my code:

'''html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Kevin Scanlon | Librarian</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Hammersmith+One|Open+Sans:400italic,600italic,400,600,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Kevin Scanlon</h1> <h2>Librarian</h2> </a> <nav> <ul> <li><a href="about.html" class="selected">About</a></li> <li><a href="index.html">Books</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> '''

Sorry...I seem to be having trouble copying the code here.

5 Answers

You need this.

nav li { list-style: none; }

http://codepen.io/anon/pen/HcEor

That did it! Thanks!

Cant see the code Kevin.

I know..its not straightforward...try here...save...then cut and paste link :-) http://codepen.io/

Here goes:

http://codepen.io/librariankevin/pen/Ivzdr

I think it might have something to do with my normalize.css file, I don't think it downloaded properly.

Thank you for directing me to CodePen!

Kevin

No problem Kevin. You pick a lot of things up as you go :-)

Can you also add your CSS to the same codepen pls

OK...Updated! Thanks!

In the meantime don't forget you can click under the video- DOWNLOADS and then PROJECT FILES to get all the files they are using for that video.