1 Answers1

-1

You can use a className in your dropdown menu with attribute "z-index:1000". For example..

<div className="dropdown-menu">...</div>

on your .css file

.dropdown-menu{
  ...          //another attributes for your div and finally..
  z-index:1000
}
Manfre
  • 656
  • 5
  • 12
  • 30