'fff', 'header-text' => false, 'width' => 1360, 'height' => 110, 'flex-width' => true, 'flex-height' => true, 'wp-head-callback' => 'aster_portfolio_header_style', ) ) ); } add_action( 'after_setup_theme', 'aster_portfolio_custom_header_setup' ); if ( ! function_exists( 'aster_portfolio_header_style' ) ) : add_action( 'wp_enqueue_scripts', 'aster_portfolio_header_style' ); function aster_portfolio_header_style() { if ( get_header_image() ) : $aster_portfolio_custom_css = " header.site-header .header-main-wrapper .bottom-header-outer-wrapper .bottom-header-part{ background-image:url('".esc_url(get_header_image())."') !important; background-position: center top; background-size: cover !important; } .bottom-header-part-wrapper .navigation-menus, .bottom-header-right-part{ background-color: transparent; }"; wp_add_inline_style( 'aster-portfolio-style', $aster_portfolio_custom_css ); endif; } endif;