Hello!
I am trying to make some modifications to the header 6, but i don´t reach the result i want.
You can see what i got in http://www.todoesempezar.com
– In the top row I want the logo on the left, and on the right the Top bar menu (menu-main-1?) and the social icons. This row should be sticked.
– In the bottom row I want the main menu, like in http://www.micliente.net
This is the code I reached to make:
} else if ( $header_layout == “header-6″ ) {
if ( $fullwidth_header ) {
$header_output .= ‘<header id=”header” class=”sticky-header fw-header clearfix”>’ . “\n”;
} else {
$header_output .= ‘<header id=”header” class=”sticky-header clearfix”>’ . “\n”;
}
$header_output .= ‘<div class=”container”>’ . “\n”;
$header_output .= ‘<div class=”row”>’ . “\n”;
$header_output .= sf_logo( ‘col-sm-4 logo-left’ );
$header_output .= ‘<div id=”menu-main-1″ class=”center-menu”>’ . “\n”;
$header_output .= ‘<div class=”header-right col-sm-4″>’ . $header_right_output . ‘</div>’ . “\n”;
$header_output .= ‘</div> <!– CLOSE .row –>’ . “\n”;
$header_output .= ‘</div> <!– CLOSE .container –>’ . “\n”;
$header_output .= ‘</header>’ . “\n”;
$header_output .= ‘<div id=”main-nav” class=”center-menu clearfix”>’ . “\n”;
$header_output .= sf_main_menu( ‘main-navigation’, ‘full’ );
$header_output .= ‘</div>’ . “\n”;
Thank you in advance!
Ruben