File: D:/HostingSpaces/budilia/budilia.nl/wwwroot/wp-content/themes/zeestyle/includes/css/colors.css.php
<?php
add_action('wp_head', 'themezee_css_colors');
function themezee_css_colors() {
$options = get_option('themezee_options');
if ( isset($options['themeZee_color_activate']) and $options['themeZee_color_activate'] == 'true' ) {
echo '<style type="text/css">';
echo '
a, a:link, a:visited, .comment a:link, .comment a:visited, .wp-pagenavi .current,
.post-title, .post-title a:link, .post-title a:visited, #respond h3, .bypostauthor .fn,
#sidebar a:link, #sidebar a:visited, #bottombar a:link, #bottombar a:visited
{
color: #'.esc_attr($options['themeZee_colors_full']).';
}
#header, #footer, .meta-date a, #commentform #submit, .meta-tags a:link, .meta-tags a:visited,
.more_posts, .more-link, .arh, #slide_panel, #comments h3, #commentform #submit,
#sidebar .widgettitle, #bottombar .widgettitle, #image-nav .nav-previous a, #image-nav .nav-next a {
background-color: #'.esc_attr($options['themeZee_colors_full']).';
}
#slideshow {
border-top: 2px solid #'.esc_attr($options['themeZee_colors_full']).';
border-bottom: 5px solid #'.esc_attr($options['themeZee_colors_full']).';
}
.sticky {
border-left: 4px solid #'.esc_attr($options['themeZee_colors_full']).';
}
';
echo '</style>';
}
}