css - Can't click on a navbar dropdown menu option with a custom media query -


after sucessfully using answer posted here navbar dropdown menus display issue on mobile , small devices media query, have jsfiddle http://jsfiddle.net/qxgy6l9b/23/.

however, still have issue can't accomplish fix. if click on second dropdown list, not possible click on item of submenu. due fact there list item after. if remove item list, dropdown menu items clickable.

i guess, linked css code:

   .dropdown-menu{     position: static;     width: 100%;     box-shadow: none;     background: inherit;   } 

i tried several things impossible make items of second dropdown list clickable if have additional item after.

does have idea ? thank much.

i think found solution. replaced position absolute relative , have correct behaviour.

hope others people :)


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -