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 trialIsmael Ramirez
3,627 Points2 of my nav elements have disappeared and my images are out of place what happened?
2 Answers
Jonas Schmitt
3,409 PointsThere are some syntax errors.
Wrong syntax
header: {
float: left;
margin: 0 0 30px 0;
padding: 5px 0 0 0;
width: 100%;
}
nav ul {
list-style: none;
margin: 0 10px;
padding; 0;
}
Right syntax
header {
float: left;
margin: 0 0 30px 0;
padding: 5px 0 0 0;
width: 100%;
}
nav ul {
list-style: none;
margin: 0 10px;
padding: 0;
}
Ismael Ramirez
3,627 Pointsthanks a lot god bless u