Warning header
To change the header white background color and use the warning color you just need to add the classes (be-color-header be-color-header-warning
) to the main wrapper (be-wrapper
) element, this way your main structure should be like this:
<html lang="en"> <body> <div class="be-wrapper be-color-header be-color-header-warning"> <nav class="navbar navbar-default navbar-fixed-top be-top-header"> <!-- Top bar --> </nav> <div class="be-left-sidebar"> <!-- Left sidebar --> </div> <div class="be-content"> <!-- Main content --> </div> <div class="be-right-sidebar"> <!-- Right sidebar --> </div> </div> </body> </html>