Viewing 1 replies (of 1 total)
  • I think you want the “Main Menu” button to appear when the window is narrow, but not at wider widths. Assuming this is correct…
    Can you edit the css on the site?
    If so, try adding

    @media screen and (min-width: 769px) {
        .menu-toggle {
            display:none;
        }
    }

    at the end of the css file. This will hide the “Main Menu” button when the screen is wider than 768px.

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove 'Main Menu' word?’ is closed to new replies.