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

Christina Dine
Christina Dine
474 Points

Bullets still by list, won't turn oange, or center

So after correcting what my friend told me to do to link the text= into my linking of the CSS, I started to type some code. Now I've typed everything exactly as the video says. The bullets are still there, but the links are no longer underlined. The #wrapper isn't even acknowledged let alone trying to change the background.

Milan Bogdanovic
Milan Bogdanovic
9,922 Points

For bullets, did you try list-style: none;
For centering i believe you should try: margin: 0 auto;

2 Answers

Without seeing you're code I can't be 100% sure what your problem is but it sounds like you need to give them a list style none in your CSS. See my example below. Use "ol" if dealing with an ordered list. If that doesn't help post your code and I'll take a look at it.

 ul {
list-style: none;
}

It may be an issue with the order that you linked your stylesheets. Make sure the code for linking your main.css file is included AFTER you link the normalize.css file. If they're ordered wrong then normalize.css will override main.css. This may be why you aren't seeing your changes.

Hope it helps!