/home/desid573/verdenaturopathy.com.au/site3/wp-content/themes/polite/templatesell
Edit: /home/desid573/verdenaturopathy.com.au/site3/wp-content/themes/polite/templatesell/dynamic-css.php (5560B)
span i,
.post-cats > span a,
.slide-wrap .caption .s-cat,
.slide-wrap .caption span a:hover,
.comment-form .logged-in-as a:last-child:hover,
.comment-form .logged-in-as a:last-child:focus,
.main-header a:hover,
.main-header a:focus,
.main-header a:active,
.top-menu > ul > li > a:hover,
.main-menu ul li.current-menu-item > a,
.header-2 .main-menu > ul > li.current-menu-item > a,
.main-menu ul li:hover > a,
.post-navigation .nav-links a:hover,
.post-navigation .nav-links a:focus,
.tabs-nav li.tab-active a,
.tabs-nav li.tab-active,
.tabs-nav li.tab-active a,
.tabs-nav li.tab-active,
ul.trail-items li a:hover span,
.author-socials a:hover,
.post-date a:focus,
.post-date a:hover,
.post-excerpt a:hover,
.post-excerpt a:focus,
.content a:hover,
.content a:focus,
.post-footer > span a:hover,
.post-footer > span a:focus,
.widget a:hover,
.widget a:focus,
.footer-menu li a:hover,
.footer-menu li a:focus,
.footer-social-links a:hover,
.footer-social-links a:focus,
.site-footer a:hover,
.site-footer a:focus, .content-area p a{
color : ". $polite_primary_color.";
}";
}
//Logo Width
if (!empty($polite_logo_width)) {
$custom_css .= "
.header-1 .head_one .logo{
max-width : ". $polite_logo_width."px;
}";
}
//Header Overlay
if (!empty($polite_header_overlay)) {
$custom_css .= "
.header-image:before {
background-color : ". $polite_header_overlay.";
}";
}
//Header Tranparent
if (!empty($polite_header_transparent)) {
$custom_css .= "
.header-image:before {
opacity : ". $polite_header_transparent.";
}";
}
//Header Min Height
if (!empty($polite_header_min_height)) {
$custom_css .= "
.header-1 .header-image .head_one {
min-height : ". $polite_header_min_height."px;
}";
}
wp_add_inline_style('polite-style', $custom_css);
}
endif;
add_action('wp_enqueue_scripts', 'polite_dynamic_css', 99);