I\'ve run into two issues with dropdown menu items on mobile devices. Specifically:
This was initially a bootstrap problem. See the fix here: https://github.com/twbs/bootstrap/issues/9543
Yes, I've seen this before and I saw the issue is on github as well. I don't remember exactly where I found this, but some guy was saying that it was an issue about setting those elements to position: absolute;
and that re setting them to static would fix it.
So why don't you go ahead and try this on your custom CSS:
CSS
.dropdown-backdrop {
position: static;
}
Let me know if we're on the same page and this solved your issue.