Add Dropdowns to Main Menu Through the Site Admin (Copy & Paste into Site Header/Footer Injections)

@Joan – so, to add lines below each submenu item (except the last one, which would look strange) like this…

You need to modify the CSS like so…

ul.ghost-submenu li {
    list-style: none;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
}
    
ul.ghost-submenu li:last-child {
    border: none;
}

So you are adding the following into the CSS…

1 Like