Remove Navbar Box

Customizr introduced built-in feature changes in v3.3. Go to Customize>Header>Design and layout. Uncheck the box Display menu in a box.

HD0010_Design_Layout

3.1/3.2 code

Where to copy/paste this code?
The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme with Customizr here.

/* START OF Remove Navbar box */
.navbar .navbar-inner {
-webkit-box-shadow: none;
-moz-box-shadow:    none;
box-shadow:         none;
background:         none;
-webkit-box-shadow: none;
-moz-box-shadow:    none;
box-shadow:         none;
}
/* END OF Remove Navbar box */

7 thoughts on “Remove Navbar Box”

Comments are closed.