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

Konrad Pilch
Konrad Pilch
2,435 Points

My Mobile Nav

HI,

Im developing this site and thers one problem. The navbar. When i pt the navbar on tablet or mobile, and i open it, the navbar goes behing everything.

I uzed z-index , no effects. HOw can i make the navbar so it appears first than anything?

1 Answer

Jeff Lemay
Jeff Lemay
14,268 Points

You need to pair z-index with position:relative in order for the z-index to "actually do something".

.whatever-your-nav-menu-is {
  z-index:9999;
  position:relative;
}

I did this quickly with inspector and your nav menu items showed but there was no background color on them so not 100% complete. This will at least give you something to work off.