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 trialBibiana Balbuena Barbosa
14,768 PointsHow do I stick the header?
I've tried position:fixed but the content merged with the banner.
4 Answers
Jamie Reardon
Treehouse Project ReviewerYou'll need to apply some padding to the top of the body rule. The padding value should be the height of your header.
Nick Callaghan
10,881 PointsTo stick to the top left of the screen:
display: sticky; position: absolute; top: 0; left: 0;
Jamie Reardon
Treehouse Project ReviewerThere is no property-value named "sticky" that exists for the display property.
Nick Callaghan
10,881 PointsYep your correct. Should be
position: sticky; top: 0; left: 0;
Jamie Reardon
Treehouse Project ReviewerAlso to note, the student's method is another valid approach to this, without the need to change the position value to sticky. The value fixed will keep the element fixed to the the top in combination with the position properties:
.element {
position: fixed;
top: 0;
/* You can optionally add these */
left: 0;
right: 0;
/* If you don't use left and right */
width: 100%;
}
/* To solve the student's problem of the element colliding with other elements on the page */
body {
padding-top: ;/* add value of the element's (header) height */
}
Bibiana Balbuena Barbosa
14,768 PointsThanks guys! I've manage to fix it with your help! :)