File: D:/HostingSpaces/budilia/budilia.nl/wwwroot/wp-content/themes/zeestyle/includes/css/layout.css.php
<?php
add_action('wp_head', 'themezee_css_layout');
function themezee_css_layout() {
echo '<style type="text/css">';
$options = get_option('themezee_options');
// Remove Rounded Corners?
if ( isset($options['themeZee_general_corners']) and $options['themeZee_general_corners'] == 'yes' ) {
echo '
#wrapper, #header,
input, textarea,
#sidebar ul li, #sidebar ul li h2, #searchsubmit, #s,
#bottombar ul li, #bottombar ul li h2,
#navi, #navi ul, .arh, #slide_panel, #slideshow,
.type-post, .type-page, .meta-date a, .postmeta, .more-link,
.post-tags a:link, .post-tags a:visited, .more_posts, .more_posts .current,
#comments h3, .commentlist .comment, #respond,
#footer, #foot_wrap, #image-nav, .type-attachment, #image-nav .nav-previous a, #image-nav .nav-next a
{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}
';
}
// Add Custom CSS
if ( isset($options['themeZee_general_css']) and $options['themeZee_general_css'] <> '' ) {
echo $options['themeZee_general_css'];
}
echo '</style>';
}