Link to home
Start Free TrialLog in
Avatar of E-Dub
E-DubFlag for United States of America

asked on

Z-Index Issue

Hoping someone can help me with a CSS fix. I have a dropdown that displays behind the body content (see attached).

If you enter "9" in the second input field, you'll see a dropdown of suggestions, but that dropdown is displaying behind the content underneath it. I've tried changing the z-index but it isn't working. Any help would be appreciated.

Here's the link to view:  http://173.230.154.241/services

User generated image
ASKER CERTIFIED SOLUTION
Avatar of Flabio Gates
Flabio Gates

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rob
hi,

Get rid of the overflow on the section element and it works:

line 504 of custom.css
.no-overflow-x {
      /* overflow-x: hidden; */
}
Ha! beat me to it Flabio :)
Avatar of E-Dub

ASKER

Thank you so much!