"; //If Menu Description is Disabled. /* if ( !has_nav_menu('primary') || get_theme_mod('klopp_disable_nav_desc',true) ) : /* echo "#site-navigation ul li ul.sub-menu, #site-navigation ul li ul.children { top: 40px; }"; echo "#site-navigation ul li ul.sub-menu li ul.sub-menu, #site-navigation ul li ul.children li ul.children { top: 0px; }"; echo "#site-navigation ul li a { padding: 14px 12px; }"; endif; */ //If Highlighting Nav active item is disabled if ( get_theme_mod('klopp_disable_active_nav') ) : echo "#site-navigation ul .current_page_item > a, #site-navigation ul .current-menu-item > a, #site-navigation ul .current_page_ancestor > a { border:none; background: inherit; }"; endif; //If Title and Desc is set to Show Below the Logo if ( get_theme_mod('klopp_branding_below_logo') ) : echo "#masthead #text-title-desc { display: block; clear: both; } "; endif; //If Logo is Centered if ( get_theme_mod('klopp_center_logo') ) : echo "#masthead #text-title-desc, #masthead #site-logo { float: none; } .site-branding { text-align: center; } #text-title-desc { display: inline-block; }"; endif; //Exception: When Logo is Centered, and Title Not Set to display in next line. if ( get_theme_mod('klopp_center_logo') && !get_theme_mod('klopp_branding_below_logo') ) : echo ".site-branding #text-title-desc { text-align: left; }"; endif; //Exception: When Logo is centered, but there is no logo. if ( get_theme_mod('klopp_center_logo') && !get_theme_mod('klopp_logo') ) : echo ".site-branding #text-title-desc { text-align: center; }"; endif; //Exception: IMage transform origin should be left on Left Alignment, i.e. Default if ( !get_theme_mod('klopp_center_logo') ) : echo "#masthead #site-logo img { transform-origin: left; }"; endif; //Modify Menu bars, if header image has been set if ( get_header_image() ) : //echo "#site-navigation { background: ".klopp_fade("#f4f4f4", 0.9)."; }"; endif; if ( get_theme_mod('klopp_title_font','Yanone Kaffeesatz') ) : echo ".title-font, h1, h2, .section-title { font-family: ".esc_html(get_theme_mod('klopp_title_font'))."; }"; endif; if ( get_theme_mod('klopp_body_font','Source Sans Pro') ) : echo "body { font-family: ".esc_html(get_theme_mod('klopp_body_font'))."; }"; endif; if ( get_header_textcolor() ) : echo "#masthead h1.site-title a { color: #".get_header_textcolor()."; }"; endif; if ( get_theme_mod('klopp_header_desccolor','#FFF') ) : echo "#masthead h2.site-description { color: ".esc_html(get_theme_mod('klopp_header_desccolor','#000'))."; }"; endif; if ( get_theme_mod('klopp_custom_css') ) : echo esc_html(get_theme_mod('klopp_custom_css')); endif; if ( get_theme_mod('klopp_hide_title_tagline') ) : echo "#masthead .site-branding #text-title-desc { display: none; }"; endif; if ( get_theme_mod('klopp_logo_resize') ) : $val = esc_html(get_theme_mod('klopp_logo_resize')/100); echo "#masthead .custom-logo { transform: scale(".$val."); -webkit-transform: scale(".$val."); -moz-transform: scale(".$val."); -ms-transform: scale(".$val."); }"; endif; if ( get_theme_mod('klopp_content_font_size') ) : $size = (get_theme_mod('klopp_content_font_size')); echo "#primary-mono .entry-content { font-size:".$size.";}"; endif; if (is_page() && has_post_thumbnail()) : global $post; $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); var_dump($image); echo "#masthead { background-image: url('". $image[0]."') !important;; }"; endif; echo ""; } add_action('wp_head', 'klopp_custom_css_mods');