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

CSS CSS Layout Techniques Positioning Schemes Positioning Schemes Challenge

Please help here I have no idea what to do!

Please answer

2 Answers

Gard Mikael Fjeldavli
Gard Mikael Fjeldavli
19,416 Points

Giving the div with class of "main-header" to have relative positioning is done fairly straight forward, like this:

.main-header {
  position: relative;
}

Setting the position of main-logo and main-nav so that they're absolutely positioned inside the header, is done in the same fashion

.main-logo, .main-nav{
  position: absolute;
}

Giving main-logo a top offset of 25px and a left offset of 25px and main-nav a bottom offset of 30px and a right offset of 25px, is done like this:

.main-logo {
  top: 25px;
  left: 25px;
}

.main-nav{
  bottom: 30px;
  right: 25px;
}

You should be able to do the rest of the tasks as they are quite similar to these. Good luck!

.main-logo, .main-nav { position: absolute; }