Home Forums WoodMart support forum como agregar un botón “+”, en el menú de navegación para la versión Móvil

como agregar un botón “+”, en el menú de navegación para la versión Móvil

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #517466

    gonzalohuez
    Participant

    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.
    #517554

    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.

Viewing 2 posts - 1 through 2 (of 2 total)