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 Build the Contact Page

I dont know why the bullet points are so far on the left

In my contact list ,my bullet points are so far on the left compared to my centered contact details

Hi Muzafaru,

Can you post a snapshot of your workspace?

Yeah, what Jason asked.

5 Answers

ok so in the navigation section in your css this is how it should look like

/***************
NAVIGATION
***************/
 nav {
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0;  
}

nav ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}

nav a{
  font-weight: 900;
  padding: 15px 10px;
}

nav li {
  display:inline-block;
}

Can you give a little more detail, show a picture of what it looks like and/or the code you have?!

I figured it out,thank you m

Hi Nytheneals Paul In your css you should have this code include

nav ul { list-style: none; margin: 0 10px; padding: 0; }

in the nav ul thts were it says list-style: none;