Forums

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

Home Forums JavaScript Tried to Make Fully Clickable Div – Only Working on Half? Reply To: Tried to Make Fully Clickable Div – Only Working on Half?

#247175
Shikkediel
Participant

Parts of the slider are somehow on top of the left side. You could lift the map up by adding this:

#map-link {
  position: relative;
  z-index: 10;
}

That seems to be the lowest index necessary…