[Solved] Slideshow overtopping nav bar and nav bar elements positioning [closed]


The reason the navigation gets bellow the slideshow is because you need to set the navigation to an higher layer with z-index this should do the trick.

Use z-index on ul

ul {
   ...
   z-index: 5;
}

1

solved Slideshow overtopping nav bar and nav bar elements positioning [closed]