I currently have a bootstrap menu implemented on my website. When the user hovers over any item in the navbar, a dropdown is displayed, and within that dropdown, there are sub-items as well:
https://i.sstatic.net/6XdgR.png
As shown in the image.
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Entertainment </a>
<ul class="dropdown-menu animated">
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/stage_shows">Stage Shows</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/game_stalls">Game Stalls</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/entertainment_stalls">Entertainment Stalls</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/special_effects">Special Effects</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/mascots">Mascots</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/photo_&_video">Photo & Video</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/sound">Sound</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/rentals">Rentals</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/tent_wala">Tent Wala</a></li>
<li><a href="https://www.booktheparty.in/kids_party-planner/entertainment/MQ/makeup_artists">Makeup Artists</a></li>
</ul>
</li>
This HTML snippet represents an example of an item with main and sub dropdowns. The issue arises when the user quickly moves the cursor to the sub dropdown, causing it to flicker. I've attempted to adjust the positioning of the sub dropdown relative to its parent, but the flickering persists.
For reference, here is the live link to the menu here. Any insights or suggestions on how to resolve this flickering behavior would be greatly appreciated. Thank you in advance.