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?
October 28, 2016 at 6:00 pm
#247175
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…