August 24, 2015 at 10:04 am
Hello,
I would like make my logo width smaller (I have a small logo) and my nav_main width bigger (have lot’s of link).
I have choosen the first logo layout and header style basic, with skrink to sticky.
I assume that I have to change .col-md-4 for logo width, and .col-md-8 for nav_main, to something else?
In my child theme, in header-style-three.php I have changed this part:
<?php global $virtue_premium; if(isset($virtue_premium[‘header_height’])) {$header_height = $virtue_premium[‘header_height’];} else {$header_height = 90;}
if(isset($virtue_premium[‘m_sticky_header’]) && $virtue_premium[‘m_sticky_header’] == ‘1’) {$msticky = ‘1’; $mstickyclass = ‘mobile-stickyheader’;} else {$msticky = ‘0’; $mstickyclass = ”;}
if(isset($virtue_premium[‘logo_layout’])) {
if($virtue_premium[‘logo_layout’] == ‘logohalf’) {$logocclass = ‘col-md-6’; $menulclass = ‘col-md-6’;}
else {$logocclass = ‘col-md-2’; $menulclass = ‘col-md-10’;}
}
else {$logocclass = ‘col-md-2’; $menulclass = ‘col-md-10’;} ?>
but nothing happend.
Can you point me to the wright direction, please, thanks.
Gabi