Custom Menu Widget - line break

How do I make each menu item start on a new line in the ‘Custom Menu’ widget? Please see attachment.
And also how do I remove the bullets?

Thank you!!

Hi @oceansurf,

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 -> Shapely Options -> Other

.widget_nav_menu ul {
    list-style: none;
    margin-left: 0;
    height: auto;
}
.widget_nav_menu li {
    clear: both;
    float: none;
}

Best Regards,
Movin

Excellent! Thank you!

You are most welcome here :slight_smile: