How to create drop down menu in Navigation bar

Hello all

Could anyone tell me how to create a drop down menu in the Navigation Bar? There is not enough room in the bar for all my pages. Or is the another way to organize this ?

Regards, Frein

Hi @frein You just need to drag and drop one page on top of the other.

1 Like

Thank you vmcosta ! That works!
Do you also know how I get rid of the ‘<’ symbol at the end of the main page name ? It seems it is there to indicate there are child pages but I rather do without that indication.

You can use this CSS to disable the indicators:

nav.navigation_bar ul > li > a.parent::after {
display: none !important;
}

Put it in the site wide code box in Settings > Code > CSS

1 Like

Thank you David, you’re fantastic!

1 Like