Hello
You may add following variants of code to the custom.css:
1.In this varint logo is not shown and menu is centered for fixed variant:
.main-nav .double-border {border:none!important;}.main-nav {border:none!important;}
.logo-with-menu{display:none!important;}
.logo {display:none!important;}
.menu-main-menu-container {text-align:center}
.menu{width:100%!important}
2.Second variant of code will make fixed header with logo to be 100% width.
//fixed header with logo for 100%://
.fixed-header .menu-main-menu-container {text-align:center}
.fixed-header .menu{width:100%!important;height:50px;margin-top:50px;}
You should edit wp-content/themes/legenda/js/etheme.js in line with following code var headerHeight = $('.header-wrapper').height() + 20; and change 20 to 0 . this will make fixed header to alway shown. Therfore you can hide default menu with : .menu-wrapper{display:none;}
3. You may upload .png with logo and banner. Or manually edit wp-content/themes/legenda/header.php and add your banner image above the menu.
We strongly recommend to make all changes for *.php files within the Child Theme. You may read about Child theme here: http://codex.wordpress.org/Child_Themes
With best regards
Brian Johnson