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 trialDeclan Ward
2,008 PointsWhy do i have bullets for my nav options still where the video does not...
I just noticed after looking at the navigation bar in the video. The tutors nav bar elements are no longer bulleted to the left (with text center) whereas mine are.
The only code that I can think of which relates to removing underlines,bullets etc. in the links is....
a { text-decoration: none; }
...I have this in my css file, and I dont believe anything is over-ruling it, so where am i going wrong???
Thanks
1 Answer
Henrik Christensen
Python Web Development Techdegree Student 38,322 Pointstry this in your css:
ul {
list-style-type: none;
}
Declan Ward
2,008 PointsDeclan Ward
2,008 PointsThanks Henrik, nice workaround. Although, I'm still interested to know why mine differs from the tutors in the first place.
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsIt's the normalize file that the instructor is using which removes the bullet points on the navigation.
It's possible that you either didn't link it correctly or you downloaded a newer version of the normalize file which doesn't remove bullet points.
If you want to post a snapshot of your workspace we can take a a look and see what the issue might be.
Declan Ward
2,008 PointsDeclan Ward
2,008 PointsYes that was it. He is using an old Normalize in this, whereas I downloaded the latest to see the difference and never bothered reverting. Thank you.