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 Adding Pages to a Website Add Iconography

Hi, My list style:none is not working on the following: https://w.trhou.se/a8c1xa4zql What do you suggest?

2 Answers

Wolfgang Warneke
Wolfgang Warneke
10,845 Points

On line 102 of your main.css file you have a dash floating around after the closing bracket and before the comment

                border-radius: 100%;} - /* Allows you to add rounded corners to our element.  100% will make the pic a circle as opposed to being a square.  */

fixed...

                border-radius: 100%;}  /* Allows you to add rounded corners to our element.  100% will make the pic a circle as opposed to being a square.  */

even better... (just my formatting style preference)

                border-radius: 100%;  /* Allows you to add rounded corners to our element.  100% will make the pic a circle as opposed to being a square.  */
}

The typo was causing later rules to never be applied

Wolfgang Warneke
Wolfgang Warneke
10,845 Points

Tools like http://csslint.net/ can help you catch things like this

Wow, that was awesome. I love the suggestion of looking up the lint checks. That was great. Thanks so much.