Skip to content Skip to sidebar Skip to footer

Suggestion Box Hiding Behind The Screen

In my project, there is a autocomplete search textbox. Whenever the user is typing something the suggestion box will appear just below the textbox. This suggestion box is hiding be

Solution 1:

search for this code and change 12 to 9 .. solve the problems

.edgefxContentContainer {
top: -16px;
z-index: 9;
}

change this div class style :

<div class="edgefxContentContainer pRelative">

Solution 2:

Your .edgefxContentContainer contains a z-index of 12. This reveals some of the suggestion box parts. Suggest you search for z-index and debug it

Post a Comment for "Suggestion Box Hiding Behind The Screen"