hide navigation menu

I really need to say BB is a great tool and it makes webdesign much easier. I recently see a nice wp responsive menu plugin. I install the plugin and find it has many editable features. However BB navigation menu is still there. Is there any way to hide BB menu? If not, is it possible to make it editable, for example I want to translate to word “menu” to Chinese or other languages, so that non English speaker can know it is a menu in their native languages. Thanks advance!

Hi Richard. Thanks for reaching out with your question!

You can’t hide the navigation menu from the customizer, but you can do it pretty easily with CSS. Here’s a snippet you can copy/paste into the CSS Code section in the theme customizer:

.fl-page-nav {
  display:none;
}

Regarding translations, we have translation files available for translating the entire theme, but I am not sure how that would work if you only wanted to translate a few words. The easiest route would probably be to override our default menu with a plugin or possibly do it programmatically.