Right Menu (Custom Menu Widget) Not Displaying As Dropdown Menu - All Links Show

Hi there,

I am trying to display a custom menu (RightNav) in my right hand sidebar. I have the menu created with the pages and sub-pages under each. Even though the pages have sub-menu items, the menu is displaying ALL my links instead of just showing the top-level links with a dropdown during hover. How can I get this menu to display like a normal menu with dropdowns? Please help. I’ve been trying to figure this out for hours. I love this theme and just moved a huge site over to it.
www.rehobothbeachfever.com
Thanks so much
Liz

Hi Liz,

I hope you are well today and thank you for your question.

This is how it works by default but if you want to achieve as you described then you can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

@media (min-width: 768px){
    #secondary .widget_nav_menu li ul.sub-menu{
        display: none;
    }
        #secondary .widget_nav_menu li:hover > ul.sub-menu{
        display: block;
    }
}

Best Regards,
Movin