how to make slideshow not go over navigation bar

Solutions on MaxInterview for how to make slideshow not go over navigation bar by the best coders in the world

showing results for - "how to make slideshow not go over navigation bar"
Isabelle
02 Feb 2016
1/* Add the 'z-index' makes sure the nav bar goes infront of everything,
2   if some things still go over then up the number until it works.*/
3nav{
4	z-index: 10; /* Don't hesitate to change '10' to a higher number. */
5}