Answers for "how to make slideshow not go over navigation bar"

CSS
1

how to make slideshow not go over navigation bar

/* Add the 'z-index' makes sure the nav bar goes infront of everything,
   if some things still go over then up the number until it works.*/
nav{
	z-index: 10; /* Don't hesitate to change '10' to a higher number. */
}
Posted by: Guest on November-23-2020

Code answers related to "how to make slideshow not go over navigation bar"

Browse Popular Code Answers by Language