Change Navigation Bar Title in Mobile version

  • Unknown's avatar

    Hi,

    You know when you look at the website on a phone, All the pages are put into one navigation bar on the top as drop down.

    The Navigation Bar (That you click to open the drop down menu to access different pages) currently says “Menu”.

    I want to change the word “Menu” to “Navigation”. As it is a restaurant website, the word “Menu” is a bit confusing. Maybe even add those 3 lines thing to show that it is a drop down menu.

    Can someone please provide me with a css code to change that.

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    This should do it. You can replace “Navigation” with anything else you want as well!

    .menu-toggle {
        line-height: 0;
        text-indent: -9999px;
    }
    .menu-toggle::after {
        content: "Navigation";
        display: block;
        line-height: initial;
        text-indent: 0;
    }
  • Unknown's avatar

    Thanks Ehtis, worked beautifully.

  • The topic ‘Change Navigation Bar Title in Mobile version’ is closed to new replies.