Reputation: 9225
I have this website: http://www.westmedgroup.com/find_provider.aspx
From the left dropdown menu, it keeps going under which prevents the entire list to be shown.
I set a min-height
as well as overflow: visible
but none of them are working.
Please help me resolve it.
Upvotes: 0
Views: 34
Reputation: 370
I found this when inspecting your page
.hidOverflow {
overflow: hidden;
}
unchecking this fixed the problem
Upvotes: 1