Top level menu item on a mobile not clickable

Hi On a mobile device how do I make the top level of a menu item clickable when the menu item has children

Hey there

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*mobile menu fix */
@media (max-width: 768px){
  span.dropdown-toggle.shapely-dropdown {
     display: block;
  }
 .shapely-dropdown {
    border: none;
}
}

Best Regards,
Support