Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Background color of drop-down nav bar behind frontpage background image. Reply To: Background color of drop-down nav bar behind frontpage background image.

#276580
Paulie_D
Member

The issue is the frontslider…you have set z-index:-999 but z-index doesn’t work unless the element has a position other than static.

So apply position:relative and then z-index:-1 is more than enough.

.frontslider {
  z-index: -1;
 position:relative;
}

https://codepen.io/Paulie-D/pen/QVrbmp