como agregar un botón “+”, en el menú de navegación para la versión Móvil
-
Necesito agregar un botón “+”, para revisar las otras categorías del menú de navegación (versión móvil del sitio web). Así como lo indico en la primera imagen adjunta.
Adjunto una segunda imagen para que puedas entender la idea que necesito.
Attachments:
You must be
logged in to view attached files.
Hello,
First, you need to add a sub menu item of the main item from the Appearance menu.
No, there is no option. The drop-down menu is opened only by clicking on the arrow.
To change the icon:
This can be implemented with Font Awesome icons:
.mobile-nav .wd-nav-opener:after {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f067";
}
.mobile-nav .wd-nav-opener.wd-active:after {
content: "\f068";
transform: none;
}
Best Regards.