File: /www/wwwroot/www.cytocare.cn/wp-content/themes/peakshops/inc/templates/header/fixed-style2.php
<?php
$mobile_header_style = ot_get_option( 'mobile_header_style', 'style1' );
$fixed_header_fullwidth = ot_get_option( 'fixed_header_fullwidth', 'on' );
$header_class[] = 'header fixed fixed-style2';
if ( 'on' === $fixed_header_fullwidth ) {
$header_class[] = 'header-full-width';
}
$header_class[] = 'fixed-header-full-width-' . $fixed_header_fullwidth;
$header_class[] = ot_get_option( 'header_color', 'light-header' );
$header_class[] = ot_get_option( 'fixed_header_shadow', 'thb-fixed-shadow-style1' );
$header_class[] = 'mobile-header-' . $mobile_header_style;
?>
<header class="<?php echo esc_attr( implode( ' ', $header_class ) ); ?>">
<div class="header-menu-row">
<div class="row align-middle
<?php
if ( 'on' === $fixed_header_fullwidth ) {
?>
full-width-row<?php } ?>">
<?php if ( 'style1' === $mobile_header_style ) { ?>
<div class="small-2 medium-3 columns hide-for-large">
<?php do_action( 'thb_mobile_toggle' ); ?>
</div>
<div class="small-8 medium-6 large-8 columns mobile-logo-column">
<?php do_action( 'thb_logo', 'fixed-logo' ); ?>
<div class="thb-navbar">
<?php get_template_part( 'inc/templates/header/full-menu' ); ?>
</div>
</div>
<div class="small-2 medium-3 large-4 columns">
<?php do_action( 'thb_secondary_area' ); ?>
</div>
<?php } else { ?>
<div class="small-6 large-8 columns">
<?php do_action( 'thb_logo', 'fixed-logo' ); ?>
<div class="thb-navbar">
<?php get_template_part( 'inc/templates/header/full-menu' ); ?>
</div>
</div>
<div class="small-6 large-4 columns">
<?php do_action( 'thb_secondary_area' ); ?>
</div>
<?php } ?>
</div>
</div>
</header>