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 Styling Web Pages and Navigation Make a CSS Image Gallery

matteo boni
matteo boni
5,087 Points

hi guys

element gallery i don't remember this function; margin padding e bullet list

css/main.css
a {
  text-decoration: none;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
}
#galley{
  margin:none;
  padding:none;

}
#logo {
  text-align: center;
  margin: 0;
}

h1, h2 {
  color: #fff;
}

nav a {
  color: #fff;
}

nav a:hover {
  color: #32673f
;
}

h1 {
  font-family: Changa One, sans-serif;
  font-size: 1.75em;
  font-weight: normal;
}
img {
  max-width:100%;
}

1 Answer

Julian Gutierrez
Julian Gutierrez
19,201 Points

For starters gallery has a typo, missing an "r". To have no padding or margin you would give them a value of zero. To remove bullets you would use

list-style:none;
Jeroen Augustinus
seal-mask
.a{fill-rule:evenodd;}techdegree
Jeroen Augustinus
Front End Web Development Techdegree Student 5,931 Points

Adding to the above and also not totally in accordance with your question but definitely needed, you need to put the Changa One font in single quotation marks like this as I think your font doesn't show up correctly right now:

h1 {
  font-family: 'Changa One', sans-serif;
  font-size: 1.75em;
  font-weight: normal;