White header

To change the default header primary background color you just need to add the class (am-white-header) to the main wrapper (am-wrapper) element this way your main structure should be like this:

<html lang="en">
  <body>
    <div class="am-wrapper am-white-header">
      <nav class="navbar navbar-default navbar-fixed-top am-top-header">
        <!-- Top bar -->
      </nav>
      <div class="am-left-sidebar">
        <!-- Left sidebar -->
      </div>
      <div class="am-content">
        <!-- Main content -->
      </div>
      <div class="am-right-sidebar">
        <!-- Right sidebar -->
      </div>
    </div> 
  </body>
</html>