Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12219
    s-design
    Member

    Hi,

    I am working locally so I can’t give you a site url.
    I am using Catch Everest Pro.

    I would like to change the heading used for the mini menu. I want to change it from “Menu” to “Main Menu.” I would like this to be the heading for the mini menu on all the sites pages. I don’t want it to reflect the name of the current page.

    Thank you for your help.

    #12240
    Sakin
    Keymaster

    @s-design: For that you need to change the menu script. So, check in your catcheverest-menu.js which is uncompressed version of catcheverest-menu.min.js . So, in that file change the below script

    jQuery("#masthead .menu").tinyNav({
    	'active' : 'current-menu-item', // String: Set the "active" class
        header: '' // String: Specify text for "header" and show header instead of the active item
    });

    with this one

    jQuery("#masthead .menu").tinyNav({
      active: 'selected', // String: Set the "active" class
      header: 'Main Menu', // String: Specify text for "header" and show header instead of the active item
      label: '' // String: Sets the <label> text for the <select> (if not set, no label will be added)
    });

    Then compress and add it in catcheverest-menu.min.js

    #12302
    s-design
    Member

    It worked great! Thank you for all your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change the Mini Menu Heading Name’ is closed to new replies.