Forums

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

Home Forums CSS tag not working with absolute positioned items Reply To: tag not working with absolute positioned items

#202822
Paulie_D
Member

At it’s basic level your #hero div has a z-index of -1 so it’s sitting under whatever comes after it.

I’m not sure why that has been applied but if you remove it and set the

.masthead-link {
  background-color: yellow;
  display: block;
  position: relative;
  z-index: 15;
}

The link pops up on top and is now clickable.

This may break other functionality of the site

You seem to have a curious stacking order going on there that you might want to look into.