Thank you David,
But I was talking about Header 6.
How can I make it so that the logo is in the centre? The logo is 350px x 94px.
Would really appreciate this instruction.
<?php
/*
*
* Header 6 – Split Menu
* ————————————————
* Copyright Swift Ideas 2016 – http://www.swiftideas.com
*
* Output for header 6
*
*/
$nota_options = nota_get_theme_opts();
$header_left_output = nota_header_aux( ‘left’ );
$header_right_output = nota_header_aux( ‘right’ );
$fullwidth_header = $nota_options[‘fullwidth_header’];
?>
<header id=”header” class=”sticky-header clearfix”>
<?php do_action(‘nota_header_start’); ?>
<div class=”header-left”>
<?php echo $header_left_output; ?>
</div>
<div class=”container”>
<div class=”row”>
<div class=”split-menu menu-left col-sm-2″>
<?php echo nota_split_header_menu( ‘left’ ); ?>
</div>
<?php echo nota_logo( ‘col-sm-3 logo-center’ ); ?>
<div class=”split-menu menu-right col-sm-4″>
<?php echo nota_split_header_menu( ‘right’ ); ?>
</div>
</div> <!– CLOSE .row –>
</div> <!– CLOSE .container –>
<div class=”header-right”>
<?php echo $header_right_output; ?>
</div>
<?php do_action(‘nota_header_end’); ?>
</header>