Reply To: Spacing between custom menu title and menu

Home Forums Support Spacing between custom menu title and menu Reply To: Spacing between custom menu title and menu

Home Forums Support Spacing between custom menu title and menu Reply To: Spacing between custom menu title and menu

#183947
Tom
Lead Developer
Lead Developer

Hi Bruce,

1. You need some simple CSS:

.widget-title {
    margin-bottom: 10px;
}

Adding CSS: https://generatepress.com/knowledgebase/adding-css/

2. I don’t think this is possible, but you can add a border between each item if you want to create separation:

.widget .menu li:not(:last-child) {
    border-bottom: 1px solid #efefef;
    margin-bottom: 5px;
}

Hope this helps 🙂