Esempio n. 1
0
 function wr_ferado_page_layout_body_classes($classes)
 {
     global $post;
     if (is_home()) {
         $id = get_option('page_for_posts');
     } else {
         $id = get_the_ID();
     }
     $global_layout = wr_ferado_theme_option('wr_page_layout');
     $page_layout = function_exists('get_field') ? get_field('acf_page_layout', $id) : '';
     switch ($page_layout) {
         case 'main':
             $classes[] = 'full-width';
             break;
         case 'left-main':
             $classes[] = 'left-content';
             break;
         case 'main-right':
             $classes[] = 'content-right';
             break;
         case 'left-main-right':
             $classes[] = 'left-content-right content3col';
             break;
         case 'left-right-main':
             $classes[] = 'left-right-content content3col';
             break;
         case 'main-left-right':
             $classes[] = 'content-left-right content3col';
             break;
         default:
             switch ($global_layout) {
                 case 'main':
                     $classes[] = 'full-width';
                     break;
                 case 'left-main':
                     $classes[] = 'left-content';
                     break;
                 case 'main-right':
                     $classes[] = 'content-right';
                     break;
                 case 'left-main-right':
                     $classes[] = 'left-content-right content3col';
                     break;
                 case 'left-right-main':
                     $classes[] = 'left-right-content content3col';
                     break;
                 case 'main-left-right':
                     $classes[] = 'content-left-right content3col';
                     break;
                 default:
                     $classes[] = 'full-width';
             }
     }
     return $classes;
 }
Esempio n. 2
0
 function wr_ferado_enqueue_google_fonts()
 {
     $protocol = is_ssl() ? 'https' : 'http';
     if ('google_font' == wr_ferado_theme_option('wr_body_font')) {
         $body_font = wr_ferado_theme_option('wr_body_font_google_family');
         wp_enqueue_style('ferado-google-font-' . str_replace(' ', '-', $body_font), "{$protocol}://fonts.googleapis.com/css?family=" . str_replace(' ', '+', $body_font) . ":100,300,400,600,700,800,900&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese");
     }
     if ('google_font' == wr_ferado_theme_option('wr_heading_font')) {
         $heading_font = wr_ferado_theme_option('wr_heading_font_google_family');
         wp_enqueue_style('ferado-google-font-' . str_replace(' ', '-', $heading_font), "{$protocol}://fonts.googleapis.com/css?family=" . str_replace(' ', '+', $heading_font) . ":100,300,400,600,700,800,900&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese");
     }
     if ('google_font' == wr_ferado_theme_option('wr_page_title_font')) {
         $page_title_font = wr_ferado_theme_option('wr_page_title_font_google_family');
         wp_enqueue_style('ferado-google-font-' . str_replace(' ', '-', $page_title_font), "{$protocol}://fonts.googleapis.com/css?family=" . str_replace(' ', '+', $page_title_font) . ":100,300,400,600,700,800,900&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese");
     }
     if ('logo_text' == wr_ferado_theme_option('wr_logo_type')) {
         $logo_font = wr_ferado_theme_option('blogname_font_family');
         wp_enqueue_style('ferado-google-font-' . str_replace(' ', '-', $logo_font), "{$protocol}://fonts.googleapis.com/css?family=" . str_replace(' ', '+', $logo_font) . ":100,300,400,600,700,800,900&subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese");
     }
 }
Esempio n. 3
0
<?php

/**
 * @version    1.5
 * @package    Ferado
 * @author     WooRockets Team <*****@*****.**>
 * @copyright  Copyright (C) 2014 WooRockets.com. All Rights Reserved.
 * @license    GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Websites: http://www.woorockets.com
 */
get_header();
?>
	<div class="page-title <?php 
echo wr_ferado_theme_option('wr_page_title_alignment');
?>
">
		<div class="container">
			<h1 <?php 
wr_ferado_schema_metadata(array('context' => 'entry_title'));
?>
><?php 
echo get_the_title();
?>
</h1>
		</div><!-- .container -->
	</div><!-- .page-title -->

	<section class="container">

		<main id="main" class="site-main" <?php 
Esempio n. 4
0
/**
 * Enqueue scripts and styles for the front end.
 *
 * @since Ferado 1.0
 */
function wr_ferado_scripts()
{
    // Load owl carousel stylesheet.
    wp_enqueue_style('owl-carousel', get_template_directory_uri() . '/assets/css/vendor/owl.carousel.css');
    // Load font Awesome.
    wp_enqueue_style('font-awesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.min.css');
    // Load our main stylesheet.
    wp_enqueue_style('ferado-main', get_template_directory_uri() . '/assets/css/main.css', array('dashicons'));
    // Load user custom stylesheet.
    wp_enqueue_style('ferado-custom', get_template_directory_uri() . '/assets/css/custom.css');
    // Load jquery waypoints.
    wp_enqueue_script('waypoints-script', get_template_directory_uri() . '/assets/js/vendor/jquery.waypoints.min.js', array(), '', true);
    // Load scrollfix script.
    wp_enqueue_script('scrollfix-script', get_template_directory_uri() . '/assets/js/vendor/scrollfix.js', array(), '', true);
    // Load owl-carousel script.
    wp_enqueue_script('owl-carousel-script', get_template_directory_uri() . '/assets/js/vendor/owl.carousel.min.js', array(), '', true);
    // Load bx-slider script.
    wp_enqueue_script('bx-slider-script', get_template_directory_uri() . '/assets/js/vendor/jquery.bxslider.min.js', array(), '', true);
    // Load isotope script.
    wp_enqueue_script('owl-isotope-script', get_template_directory_uri() . '/assets/js/vendor/isotope.pkgd.min.js', array(), '', true);
    // Enqueue countdown timer script if maintenance mode is enable
    if (wr_ferado_theme_option('wr_maintenance_mode')) {
        wp_enqueue_script('jquery-countdown-script', get_template_directory_uri() . '/assets/js/vendor/jquery.countdown.js', array(), '', true);
    }
    // Load our custom javascript.
    $extraParams = array();
    wp_enqueue_script('ferado-main-script', get_template_directory_uri() . '/assets/js/main.js', array('jquery'), '', true);
    if ('masonry' == wr_ferado_theme_option('wr_blog_layout')) {
        $extraParams['blog_masonry'] = wr_ferado_theme_option('wr_blog_layout');
    }
    if (wr_ferado_theme_option('wr_sticky_menu')) {
        $extraParams['sticky_menu'] = wr_ferado_theme_option('wr_sticky_menu');
    }
    wp_localize_script('ferado-main-script', 'extraParams', $extraParams);
    // Adds the comment-reply JavaScript to the single post pages
    if (is_singular() && comments_open() && get_option('thread_comments')) {
        wp_enqueue_script('comment-reply');
    }
    // Enqueue style of WR Page Builder
    if (class_exists('WR_Pb_Init')) {
        wp_enqueue_style('ferado-pagebuilder', get_template_directory_uri() . '/assets/css/pagebuilder.css');
    }
    // Enqueue custom style for woocommerce
    if (class_exists('Woocommerce')) {
        wp_enqueue_style('ferado-wcm', get_template_directory_uri() . '/assets/css/wcm.css');
    }
    // Enqueue custom style for BuddyPress
    if (class_exists('BuddyPress')) {
        wp_enqueue_style('ferado-bdp', get_template_directory_uri() . '/assets/css/buddypress.css');
    }
    // Load responsive stylesheet.
    wp_enqueue_style('ferado-responsive', get_template_directory_uri() . '/assets/css/responsive.css', array(), '', 'screen');
}
Esempio n. 5
0
		<div class="quote-content">
			<?php 
    echo $quote_content;
    ?>
			<a class="more-link" href="<?php 
    echo esc_url($url);
    ?>
"><?php 
    echo esc_html($quote_author);
    ?>
</a>
		</div>

	<?php 
} else {
    if ('small_thumb' == wr_ferado_theme_option('wr_blog_layout')) {
        ?>
		<?php 
        get_template_part('post', 'format');
        ?>

		<div class="entry-content" <?php 
        wr_ferado_schema_metadata(array('context' => 'entry_content'));
        ?>
>
			<header class="entry-header">
				
				<h2 class="entry-title" <?php 
        wr_ferado_schema_metadata(array('context' => 'entry_title'));
        ?>
>
Esempio n. 6
0
/**
 * Show options for ordering
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.2.0
 */
if (!defined('ABSPATH')) {
    exit;
}
// Exit if accessed directly
global $woocommerce, $wp_query;
if (1 == $wp_query->found_posts || !woocommerce_products_will_display()) {
    return;
}
$list = wr_ferado_theme_option('wr_wcm_list_product_layout');
$is_list = isset($list) && '0' == $list;
?>
<div class="wcm-orderby">
	<div class="style-switch">
		<span><?php 
_e('View as: ', 'ferado');
?>
</span>
		<a class="<?php 
if (!$is_list) {
    echo 'active';
}
?>
"><i class="dashicons dashicons-grid-view"></i></a>
		<a class="list <?php 
Esempio n. 7
0
 * @license    GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Websites: http://www.woorockets.com
 */
/**
 * Load the correct sidebar according to the page layout
 *
 * @since 1.0
 */
// Get post or page id
if (is_home()) {
    $id = get_option('page_for_posts');
} else {
    $id = get_the_ID();
}
$global_layout = wr_ferado_theme_option('wr_page_layout');
$page_layout = function_exists('get_field') ? get_field('acf_page_layout', $id) : '';
switch ($page_layout) {
    case 'main':
        $sidebars[] = '';
        break;
    case 'left-main':
        $sidebars[] = wr_ferado_get_sidebar_secondary();
        break;
    case 'main-right':
        $sidebars[] = wr_ferado_get_sidebar_primary();
        break;
    case 'left-main-right':
    case 'left-right-main':
    case 'main-left-right':
        $sidebars[] = wr_ferado_get_sidebar_secondary();
Esempio n. 8
0
/**
 * Adds custom classes to the array of body classes.
 *
 * @param array $classes Classes for the body element.
 * @return array
 */
function wr_ferado_body_class($classes)
{
    if (wr_ferado_theme_option('wr_maintenance_mode')) {
        if (!is_feed()) {
            // Check if user is not logged in
            if (!is_user_logged_in()) {
                $classes[] = 'offline';
            }
        }
    }
    if (wr_ferado_theme_option('wr_layout_boxed')) {
        $classes[] = 'boxed';
    }
    return $classes;
}
Esempio n. 9
0
    /**
     * Start the Loop
     */
    while (have_posts()) {
        the_post();
        /**
         * Run the loop for the search to output the results.
         * If you want to overload this in a child theme then include a file
         * called content.php and that will be used instead.
         */
        get_template_part('content');
    }
    wr_ferado_pagination();
} else {
    get_template_part('content', 'none');
}
if ('masonry' == wr_ferado_theme_option('wr_blog_layout')) {
    echo '</div>';
}
?>

		</main><!-- #main -->

		<?php 
get_sidebar();
?>
		
	</section><!-- .container -->

<?php 
get_footer();
Esempio n. 10
0
/**
 * Customizer Color Schemes CSS Output
 *
 * @package Ferado
 */
function wr_ferado_fonts_output()
{
    // Get parameter of body font
    $body_font = wr_ferado_theme_option('wr_body_font');
    $body_font_family_google = wr_ferado_theme_option('wr_body_font_google_family');
    $body_font_weight_google = wr_ferado_theme_option('wr_body_font_google_weight');
    $body_font_family_standard = wr_ferado_theme_option('wr_body_font_standard_family');
    $body_font_weight_standard = wr_ferado_theme_option('wr_body_font_standard_weight');
    $body_font_size = wr_ferado_theme_option('wr_body_font_size');
    // Get parameter of page title font
    $page_title_font = wr_ferado_theme_option('wr_page_title_font');
    $page_title_font_family_google = wr_ferado_theme_option('wr_page_title_font_google_family');
    $page_title_font_weight_google = wr_ferado_theme_option('wr_page_title_font_google_weight');
    $page_title_font_family_standard = wr_ferado_theme_option('wr_page_title_font_standard_family');
    $page_title_font_weight_standard = wr_ferado_theme_option('wr_page_title_font_standard_weight');
    $page_title_font_size = wr_ferado_theme_option('wr_page_title_font_size');
    // Get parameter of heading font
    $heading_font = wr_ferado_theme_option('wr_heading_font');
    $heading_font_family_google = wr_ferado_theme_option('wr_heading_font_google_family');
    $heading_font_weight_google = wr_ferado_theme_option('wr_heading_font_google_weight');
    $heading_font_family_standard = wr_ferado_theme_option('wr_heading_font_standard_family');
    $heading_font_weight_standard = wr_ferado_theme_option('wr_heading_font_standard_weight');
    $heading_h1_font_size = wr_ferado_theme_option('wr_heading_h1_font_size');
    $heading_h2_font_size = wr_ferado_theme_option('wr_heading_h2_font_size');
    $heading_h3_font_size = wr_ferado_theme_option('wr_heading_h3_font_size');
    $heading_h4_font_size = wr_ferado_theme_option('wr_heading_h4_font_size');
    $heading_h5_font_size = wr_ferado_theme_option('wr_heading_h5_font_size');
    $heading_h6_font_size = wr_ferado_theme_option('wr_heading_h6_font_size');
    // Get parameter of logo font
    $logo_font = wr_ferado_theme_option('wr_logo_type');
    $logo_font_family = wr_ferado_theme_option('blogname_font_family');
    $logo_font_weight = wr_ferado_theme_option('blogname_font_weight');
    $logo_font_size = wr_ferado_theme_option('blogname_font_size');
    $body_font_style = $page_title_font_style = $heading_font_style = $logo_font_style = '';
    if ('google_font' == $body_font) {
        $body_font_family = "{$body_font_family_google}";
        if ('100_i' == $body_font_weight_google || '300_i' == $body_font_weight_google || '400_i' == $body_font_weight_google || '600_i' == $body_font_weight_google || '700_i' == $body_font_weight_google || '800_i' == $body_font_weight_google || '900_i' == $body_font_weight_google) {
            $body_font_weight = substr($body_font_weight_google, 0, -2);
            $body_font_style = "font-style: italic;";
        } else {
            $body_font_weight = $body_font_weight_google;
        }
    } elseif ('standard_font' == $body_font) {
        $body_font_family = $body_font_family_standard;
        if ('normal_i' == $body_font_weight_standard || 'bold_i' == $body_font_weight_standard) {
            $body_font_weight = substr($body_font_weight_standard, 0, -2);
            $body_font_style = "font-style: italic;";
        } else {
            $body_font_weight = $body_font_weight_standard;
        }
    }
    if ('google_font' == $page_title_font) {
        $page_title_font_family = "{$page_title_font_family_google}";
        if ('100_i' == $page_title_font_weight_google || '300_i' == $page_title_font_weight_google || '400_i' == $page_title_font_weight_google || '600_i' == $page_title_font_weight_google || '700_i' == $page_title_font_weight_google || '800_i' == $page_title_font_weight_google || '900_i' == $page_title_font_weight_google) {
            $page_title_font_weight = substr($page_title_font_weight_google, 0, -2);
            $page_title_font_style = "font-style: italic;";
        } else {
            $page_title_font_weight = $page_title_font_weight_google;
        }
    } elseif ('standard_font' == $page_title_font) {
        $page_title_font_family = $page_title_font_family_standard;
        if ('normal_i' == $page_title_font_weight_standard || 'bold_i' == $page_title_font_weight_standard) {
            $page_title_font_weight = substr($page_title_font_weight_standard, 0, -2);
            $page_title_font_style = "font-style: italic;";
        } else {
            $page_title_font_weight = $page_title_font_weight_standard;
        }
    }
    if ('google_font' == $heading_font) {
        $heading_font_family = "{$heading_font_family_google}";
        if ('100_i' == $heading_font_weight_google || '300_i' == $heading_font_weight_google || '400_i' == $heading_font_weight_google || '600_i' == $heading_font_weight_google || '700_i' == $heading_font_weight_google || '800_i' == $heading_font_weight_google || '900_i' == $heading_font_weight_google) {
            $heading_font_weight = substr($heading_font_weight_google, 0, -2);
            $heading_font_style = "font-style: italic;";
        } else {
            $heading_font_weight = $heading_font_weight_google;
        }
    } elseif ('standard_font' == $heading_font) {
        $heading_font_family = $heading_font_family_standard;
        if ('normal_i' == $heading_font_weight_standard || 'bold_i' == $heading_font_weight_standard) {
            $heading_font_weight = substr($heading_font_weight_standard, 0, -2);
            $heading_font_style = "font-style: italic;";
        } else {
            $heading_font_weight = $heading_font_weight_standard;
        }
    }
    if ('logo_text' == $logo_font) {
        if ('100_i' == $logo_font_weight || '300_i' == $logo_font_weight || '400_i' == $logo_font_weight || '600_i' == $logo_font_weight || '700_i' == $logo_font_weight || '800_i' == $logo_font_weight || '900_i' == $logo_font_weight) {
            $logo_font_weight = substr($logo_font_weight, 0, -2);
            $logo_font_style = "font-style: italic;";
        } else {
            $logo_font_weight = $logo_font_weight;
        }
    }
    if (!empty($body_font) || !empty($page_title_font) || !empty($heading_font)) {
        ?>
		
		<style id="ferado-custom-fonts">
			body {
				font-family: <?php 
        echo trim($body_font_family);
        ?>
;
				font-size: <?php 
        echo trim($body_font_size);
        ?>
px;
				font-weight: <?php 
        echo trim($body_font_weight);
        ?>
;
				<?php 
        echo trim($body_font_style);
        ?>
			}
			.site .jsn-master {
				font-family: <?php 
        echo trim($body_font_family);
        ?>
;
				font-size: <?php 
        echo trim($body_font_size);
        ?>
px;
			}
			h1, h2, h3, h4, h5, h6 {
				font-family: <?php 
        echo trim($heading_font_family);
        ?>
;
				font-weight: <?php 
        echo trim($heading_font_weight);
        ?>
;
				<?php 
        echo trim($heading_font_style);
        ?>
			}
			h1 { font-size: <?php 
        echo trim($heading_h1_font_size);
        ?>
px; }
			h2 { font-size: <?php 
        echo trim($heading_h2_font_size);
        ?>
px; }
			h3 { font-size: <?php 
        echo trim($heading_h3_font_size);
        ?>
px; }
			h4 { font-size: <?php 
        echo trim($heading_h4_font_size);
        ?>
px; }
			h5 { font-size: <?php 
        echo trim($heading_h5_font_size);
        ?>
px; }
			h6 { font-size: <?php 
        echo trim($heading_h6_font_size);
        ?>
px; }
			.site-branding .site-title {
				font-family: "<?php 
        echo trim($logo_font_family);
        ?>
";
				font-size: <?php 
        echo trim($logo_font_size);
        ?>
px;
				font-weight: <?php 
        echo trim($logo_font_weight);
        ?>
;
				<?php 
        echo trim($logo_font_style);
        ?>
			}
			<?php 
        if ('google_font' == $page_title_font) {
            ?>
				.page-title h1 {
					font-family: "<?php 
            echo trim($page_title_font_family_google);
            ?>
";
				}
			<?php 
        } else {
            ?>
				.page-title h1 {
					font-family: <?php 
            echo trim($page_title_font_family_standard);
            ?>
;
				}
			<?php 
        }
        ?>
			.page-title h1 {
				font-size: <?php 
        echo trim($page_title_font_size);
        ?>
px;
				font-weight: <?php 
        echo trim($page_title_font_weight);
        ?>
;
				<?php 
        echo trim($page_title_font_style);
        ?>
			}
		</style>

	<?php 
    }
}
Esempio n. 11
0
<?php

/**
 * @version    1.5
 * @package    Ferado
 * @author     WooRockets Team <*****@*****.**>
 * @copyright  Copyright (C) 2014 WooRockets.com. All Rights Reserved.
 * @license    GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Websites: http://www.woorockets.com
 */
/**
 * Load the correct sidebar according to the woocommerce layout
 *
 * @since 1.0
 */
$wcm_layout = wr_ferado_theme_option('wr_wcm_layout');
switch ($wcm_layout) {
    case 'main':
        $sidebars[] = '';
        break;
    case 'left-main':
        $sidebars[] = wr_ferado_get_sidebar_woo();
        break;
    case 'main-right':
        $sidebars[] = wr_ferado_get_sidebar_woo();
        break;
    default:
        $sidebars[] = '';
}
return $sidebars;
Esempio n. 12
0
?>
" />
			<ul class="countdown"></ul>
		</header>
		<footer>
			<?php 
echo wr_ferado_social_channel();
?>
		</footer>
	</div>
	<?php 
echo '<scr' . 'ipt>';
?>
	( function( $ ) {
		"use strict";
		$(document).ready(function() {
			var endDate = "<?php 
echo wr_ferado_theme_option('wr_maintenance_mode_timer');
?>
";
			$( ".countdown" ).countdown({
				date: endDate,
				render: function(data) {
					$(this.el).html("<li>" + this.leadingZeros(data.years, 2) + " <span>years</span></li><li>" + this.leadingZeros(data.days, 3) + " <span>days</span></li><li>" + this.leadingZeros(data.hours, 2) + " <span>hours</span></li><li>" + this.leadingZeros(data.min, 2) + " <span>min</span></li><li>" + this.leadingZeros(data.sec, 2) + " <span>sec</span></li>");
				}
			});
		});
	})(jQuery);
	<?php 
echo '</scr' . 'ipt>';
get_footer();
Esempio n. 13
0
?>
			</div><!-- .container -->
		</div><!-- .top -->

		<?php 
get_sidebar('bottom');
?>

		<div class="bot">
			<div class="container">
				<div class="site-info">
					<?php 
echo sprintf(__('%s', 'ferado'), wr_ferado_theme_option('wr_copyright_text'));
?>
				</div><!-- .site-info -->
				<div class="bot-right"><?php 
echo sprintf(__('%s', 'ferado'), wr_ferado_theme_option('wr_footer_right_text'));
?>
</div>
			</div><!-- .container -->
		</div><!-- .bot -->

	</footer><!-- #colophon -->
</div><!-- #page -->
<a href="#" class="back-to-top"><i class="dashicons dashicons-arrow-up-alt2"></i></a>
<?php 
wp_footer();
?>
</body>
</html>
Esempio n. 14
0
>

			<?php 
/**
 * Start the Loop
 */
while (have_posts()) {
    the_post();
    /**
     * Run the loop for the search to output the results.
     * If you want to overload this in a child theme then include a file
     * called content-page.php and that will be used instead.
     */
    get_template_part('content', 'page');
    // If comments are open or we have at least one comment, load up the comment template
    if (wr_ferado_theme_option('wr_page_comments')) {
        if (comments_open() || '0' != get_comments_number()) {
            comments_template();
        }
    }
}
?>

		</main><!-- #main -->

		<?php 
get_sidebar();
?>
		
	</section><!-- .container -->
Esempio n. 15
0
/**
 * Customizer Color Schemes CSS Output
 *
 * @package Ferado
 */
function wr_ferado_color_schemes_output()
{
    // Get color schemes option
    $color = wr_ferado_theme_option('wr_color_schemes');
    $body_color = wr_ferado_theme_option('wr_c_body_color');
    $body_bg_color = wr_ferado_theme_option('wr_c_body_bg_color');
    $page_title_color = wr_ferado_theme_option('wr_c_page_title_color');
    $page_title_bg_color = wr_ferado_theme_option('wr_c_page_title_bg_color');
    $page_title_bg_image = wr_ferado_theme_option('wr_page_title_image');
    $page_title_repeat = wr_ferado_theme_option('wr_page_title_bg_repeat');
    $page_title_position = wr_ferado_theme_option('wr_page_title_bg_position');
    $page_title_attach = wr_ferado_theme_option('wr_page_title_bg_attachment');
    $page_title_align = wr_ferado_theme_option('wr_page_title_alignment');
    $main_menu_color = wr_ferado_theme_option('wr_c_main_menu_color');
    $heading_color = wr_ferado_theme_option('wr_c_heading_color');
    $footer_bg_color = wr_ferado_theme_option('wr_c_footer_bg_color');
    if ('brown' == $color) {
        ?>

		<style>
			a,
			#menu-main li .sub-menu li a:hover,
			.entry-title a:hover,
			.entry-meta a:hover,
			.more-link,
			.counter-wrap:hover,
			.widget a,
			.widget ul li a:hover,
			.site-footer .widget a:hover,
			.post-list .entry-title a:hover,
			.post-list .entry-meta a:hover,
			.post-list.style-2 .entry-title a:hover,
			.post-list.style-2 .entry-meta a,
			.post-list.style-3 .right .post:hover .entry-title a,
			.post-list.style-3 .right .post:hover .entry-meta,
			.bx-controls-direction a i,
			.jsn-bootstrap3 a,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a i,
			.jsn-bootstrap3 .wr-element-accordion.no-bg .panel-title a:hover,
			.shop-cart .shop-item ul.product_list_widget li span,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce #content div.product p.price,
			.woocommerce #content div.product span.price,
			.woocommerce div.product p.price,
			.woocommerce div.product span.price,
			.woocommerce-page #content div.product p.price,
			.woocommerce-page #content div.product span.price,
			.woocommerce-page div.product p.price,
			.woocommerce-page div.product span.price,
			.widget.woocommerce ul li:hover:before,
			.widget.woocommerce ul li li:hover:before,
			.widget.woocommerce ins .amount,
			.woocommerce #content table.cart .product-name a:hover,
			.woocommerce table.cart .product-name a:hover,
			.woocommerce-page #content table.cart .product-name a:hover,
			.woocommerce-page table.cart .product-name a:hover,
			.woocommerce .cart-collaterals .cart_totals table td .amount,
			.woocommerce-page .cart-collaterals .cart_totals table td .amount,
			.error-404 h1,
			.site-header.version-2 .header-top .top-info,
			.site-header.version-2 #menu-main li .sub-menu li a:hover,
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a,
			.site-header.version-2 .search-form button,
			.site-header.version-2 .shop-cart .cart-control,
			.post-list.style-3 .right .entry-title a.active,
			.page-title h1 {
				color: #786d5b;
			}
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-header .wr-prtbl-title,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-footer .btn {
				background-color: #786d5b !important;
			}
			button,
			input[type="button"],
			input[type="reset"],
			input[type="submit"],
			#menu-top > li > a:hover,
			.entry-thumb .posted-on,
			.widget .tagcloud a,
			.site-footer .top,
			.site-footer .widget ul li:hover:before,
			.back-to-top i:hover,
			.bx-controls-direction a i:hover,
			.page-numbers li span.current,
			.page-numbers li a:hover,
			.page-numbers li a.prev,
			.page-numbers li a.next,
			.comments-area .action-link a:hover,
			.comment-respond .comment-form .form-submit input[type="submit"],
			.post-list.style-3 .more-link,
			.blog-masonry .hentry .more-link:hover,
			.widget #wp-calendar caption,
			.counter-wrap:hover .icon,
			.counter-wrap.circle:hover .icon,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:before,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:after,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.left,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.right,
			.jsn-bootstrap3 .wr-element-testimonial .carousel.wr-testimonial ol.carousel-indicators li.active,
			.jsn-bootstrap3 .wr-element-heading.h-center,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-progressbar.mini.left-info .progress-bar-danger .sr-only,
			.jsn-bootstrap3 .wr-element-accordion.no-bg.has-icon .wr-icon-accordion:before,
			.shop-cart .shop-item .buttons .button,
			.style-switch a.active,
			.woocommerce ul.products li.product .p-info:before,
			.woocommerce-page ul.products li.product .p-info:before,
			.woocommerce ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce ul.products li.product .onsale,
			.woocommerce-page ul.products li.product .onsale,
			.woocommerce span.onsale,
			.woocommerce-page span.onsale,
			.woocommerce span.free-badge,
			.woocommerce-page span.free-badge,
			.woocommerce #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce #content nav.woocommerce-pagination ul li span.current,
			.woocommerce nav.woocommerce-pagination ul li a:focus,
			.woocommerce nav.woocommerce-pagination ul li a:hover,
			.woocommerce nav.woocommerce-pagination ul li span.current,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
			.woocommerce-page nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page nav.woocommerce-pagination ul li span.current,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div,
			.summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover,
			.single-share .social li a:hover,
			.woocommerce #content .quantity .minus:hover,
			.woocommerce #content .quantity .plus:hover,
			.woocommerce .quantity .minus:hover,
			.woocommerce .quantity .plus:hover,
			.woocommerce-page #content .quantity .minus:hover,
			.woocommerce-page #content .quantity .plus:hover,
			.woocommerce-page .quantity .minus:hover,
			.woocommerce-page .quantity .plus:hover,
			.woocommerce #content input.button.alt,
			.woocommerce #respond input#submit.alt,
			.woocommerce a.button.alt,
			.woocommerce button.button.alt,
			.woocommerce input.button.alt,
			.woocommerce-page #content input.button.alt,
			.woocommerce-page #respond input#submit.alt,
			.woocommerce-page a.button.alt,
			.woocommerce-page button.button.alt,
			.woocommerce-page input.button.alt,
			.woocommerce #content input.button,
			.woocommerce #respond input#submit,
			.woocommerce a.button,
			.woocommerce button.button,
			.woocommerce input.button,
			.woocommerce-page #content input.button,
			.woocommerce-page #respond input#submit,
			.woocommerce-page a.button,
			.woocommerce-page button.button,
			.woocommerce-page input.button,
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button,
			.woocommerce #content table.cart a.remove:hover,
			.woocommerce table.cart a.remove:hover,
			.woocommerce-page #content table.cart a.remove:hover,
			.woocommerce-page table.cart a.remove:hover,
			.woocommerce.product-slider .owl-theme .owl-controls .owl-buttons > div:hover,
			.error-404 h1 span,
			.error-404 input.search-submit,
			.page-offline footer .social li a,
			.site-header.version-2 #menu-top > li > a:hover {
				background: #786d5b;
			}
			.header-bot {
				background-color: #786d5b;	
			}
			#menu-main > li.current-menu-item > a {
				background-image: -moz-linear-gradient(bottom, #786d5b 0%, #6c6251 100%); /* gradient overlay */
				background-image: -o-linear-gradient(bottom, #786d5b 0%, #6c6251 100%); /* gradient overlay */
				background-image: -webkit-linear-gradient(bottom, #786d5b 0%, #6c6251 100%); /* gradient overlay */
				background-image: linear-gradient(bottom, #786d5b 0%, #6c6251 100%); /* gradient overlay */
			}
			blockquote,
			address,
			q,
			.comment-respond .comment-form [class*="comment-form"] input:focus,
			.comment-respond .comment-form .comment-form-comment textarea:focus,
			.widget input:focus,
			.error-404 input.search-field:focus,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:focus,
			.jsn-bootstrap3 .wr-element-tab .tabs-below .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-left .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-right .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab.color .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li.active > a,
			.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li a:hover,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li.chosen a,
			.site-header.version-2 .header-top {
				border-color: #786d5b;
			}
			.site .jsn-master .jsn-bootstrap .jsn-form-content input:focus,
			.site .jsn-master .jsn-bootstrap .jsn-form-content textarea:focus {
				border-color: #786d5b !important;
			}
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a {
				border-top-color: #786d5b;
			}
			.counter-wrap .icon:before,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:before {
				border-bottom: 4px solid #786d5b;
				border-top: 4px solid #786d5b;
			}
			.counter-wrap .icon:after,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:after {
				border-left: 4px solid #786d5b;
				border-right: 4px solid #786d5b;
			}
			.counter-wrap.circle:hover .icon {
				-webkit-box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #786d5b;
				-moz-box-shadow:    0 0 0 4px #fff inset, 0 0 0 2px #786d5b;
				-ms-box-shadow:     0 0 0 4px #fff inset, 0 0 0 2px #786d5b;
				box-shadow:         0 0 0 4px #fff inset, 0 0 0 2px #786d5b;
			}
			.jsn-bootstrap3 .wr-element-testimonial.quotes-top .wr-testimonial-box,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a {
				border-left: 2px solid #786d5b;
			}
			.jsn-bootstrap3 .wr-element-list.iconbg .wr-list-icons.wr-shape-circle li:hover .wr-icon-base {
				-webkit-box-shadow: 0 0 0 3px #fff inset, 0 0 0 3px #786d5b;
				-moz-box-shadow:    0 0 0 3px #fff inset, 0 0 0 3px #786d5b;
				-ms-box-shadow:     0 0 0 3px #fff inset, 0 0 0 3px #786d5b;
				box-shadow:         0 0 0 3px #fff inset, 0 0 0 3px #786d5b;
			}
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-state-default {
				border: 1px solid #786d5b;
			}
			.site-branding .site-description,
			#menu-main li a,
			.site-footer .top .social li a:hover,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i {
				color: #5c513f;
			}
			.search-box > .wr-icon-search:hover,
			.search-box .search-form button:hover,
			.page-numbers li a.prev:hover,
			.page-numbers li a.next:hover,
			.widget .tagcloud a:hover,
			.site-footer .top .social li a,
			.breadcrumbs li.current,
			.breadcrumbs li a,
			.post-list.style-3 .more-link:hover,
			.shop-cart .cart-control span,
			.shop-cart .shop-item .buttons .button:hover,
			.style-switch a:hover,
			.woocommerce ul.products li.product .p-info .p-cart a.button:hover,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:hover,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div:hover,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.jsn-bootstrap3 .wr-element-heading.h-center:before,
			.jsn-bootstrap3 .wr-element-heading.h-center:after,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:before,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:after,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.page-offline footer .social li a,
			.error-404 input.search-submit {
				background: #5c513f;
			}
		</style>

	<?php 
    } elseif ('yellow' == $color) {
        ?>

		<style>
			a,
			#menu-main li .sub-menu li a:hover,
			.entry-title a:hover,
			.entry-meta a:hover,
			.more-link,
			.counter-wrap:hover,
			.widget a,
			.widget ul li a:hover,
			.site-footer .widget a:hover,
			.post-list .entry-title a:hover,
			.post-list .entry-meta a:hover,
			.post-list.style-2 .entry-title a:hover,
			.post-list.style-2 .entry-meta a,
			.post-list.style-3 .right .post:hover .entry-title a,
			.post-list.style-3 .right .post:hover .entry-meta,
			.bx-controls-direction a i,
			.jsn-bootstrap3 a,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a i,
			.jsn-bootstrap3 .wr-element-accordion.no-bg .panel-title a:hover,
			.shop-cart .shop-item ul.product_list_widget li span,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce #content div.product p.price,
			.woocommerce #content div.product span.price,
			.woocommerce div.product p.price,
			.woocommerce div.product span.price,
			.woocommerce-page #content div.product p.price,
			.woocommerce-page #content div.product span.price,
			.woocommerce-page div.product p.price,
			.woocommerce-page div.product span.price,
			.widget.woocommerce ul li:hover:before,
			.widget.woocommerce ul li li:hover:before,
			.widget.woocommerce ins .amount,
			.woocommerce #content table.cart .product-name a:hover,
			.woocommerce table.cart .product-name a:hover,
			.woocommerce-page #content table.cart .product-name a:hover,
			.woocommerce-page table.cart .product-name a:hover,
			.woocommerce .cart-collaterals .cart_totals table td .amount,
			.woocommerce-page .cart-collaterals .cart_totals table td .amount,
			.error-404 h1,
			.site-header.version-2 .header-top .top-info,
			.site-header.version-2 #menu-main li .sub-menu li a:hover,
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a,
			.site-header.version-2 .search-form button,
			.site-header.version-2 .shop-cart .cart-control,
			.post-list.style-3 .right .entry-title a.active,
			.page-title h1 {
				color: #c99542;
			}
			.bg-red,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-header .wr-prtbl-title,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-footer .btn {
				background-color: #c99542 !important;
			}
			button,
			input[type="button"],
			input[type="reset"],
			input[type="submit"],
			#menu-top > li > a:hover,
			.entry-thumb .posted-on,
			.widget .tagcloud a,
			.site-footer .top,
			.site-footer .widget ul li:hover:before,
			.back-to-top i:hover,
			.bx-controls-direction a i:hover,
			.page-numbers li span.current,
			.page-numbers li a:hover,
			.page-numbers li a.prev,
			.page-numbers li a.next,
			.comments-area .action-link a:hover,
			.comment-respond .comment-form .form-submit input[type="submit"],
			.post-list.style-3 .more-link,
			.blog-masonry .hentry .more-link:hover,
			.widget #wp-calendar caption,
			.counter-wrap:hover .icon,
			.counter-wrap.circle:hover .icon,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:before,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:after,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.left,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.right,
			.jsn-bootstrap3 .wr-element-testimonial .carousel.wr-testimonial ol.carousel-indicators li.active,
			.jsn-bootstrap3 .wr-element-heading.h-center,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-progressbar.mini.left-info .progress-bar-danger .sr-only,
			.jsn-bootstrap3 .wr-element-accordion.no-bg.has-icon .wr-icon-accordion:before,
			.shop-cart .shop-item .buttons .button,
			.style-switch a.active,
			.woocommerce ul.products li.product .p-info:before,
			.woocommerce-page ul.products li.product .p-info:before,
			.woocommerce ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce ul.products li.product .onsale,
			.woocommerce-page ul.products li.product .onsale,
			.woocommerce span.onsale,
			.woocommerce-page span.onsale,
			.woocommerce span.free-badge,
			.woocommerce-page span.free-badge,
			.woocommerce #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce #content nav.woocommerce-pagination ul li span.current,
			.woocommerce nav.woocommerce-pagination ul li a:focus,
			.woocommerce nav.woocommerce-pagination ul li a:hover,
			.woocommerce nav.woocommerce-pagination ul li span.current,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
			.woocommerce-page nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page nav.woocommerce-pagination ul li span.current,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div,
			.summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover,
			.single-share .social li a:hover,
			.woocommerce #content .quantity .minus:hover,
			.woocommerce #content .quantity .plus:hover,
			.woocommerce .quantity .minus:hover,
			.woocommerce .quantity .plus:hover,
			.woocommerce-page #content .quantity .minus:hover,
			.woocommerce-page #content .quantity .plus:hover,
			.woocommerce-page .quantity .minus:hover,
			.woocommerce-page .quantity .plus:hover,
			.woocommerce #content input.button.alt,
			.woocommerce #respond input#submit.alt,
			.woocommerce a.button.alt,
			.woocommerce button.button.alt,
			.woocommerce input.button.alt,
			.woocommerce-page #content input.button.alt,
			.woocommerce-page #respond input#submit.alt,
			.woocommerce-page a.button.alt,
			.woocommerce-page button.button.alt,
			.woocommerce-page input.button.alt,
			.woocommerce #content input.button,
			.woocommerce #respond input#submit,
			.woocommerce a.button,
			.woocommerce button.button,
			.woocommerce input.button,
			.woocommerce-page #content input.button,
			.woocommerce-page #respond input#submit,
			.woocommerce-page a.button,
			.woocommerce-page button.button,
			.woocommerce-page input.button,
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button,
			.woocommerce #content table.cart a.remove:hover,
			.woocommerce table.cart a.remove:hover,
			.woocommerce-page #content table.cart a.remove:hover,
			.woocommerce-page table.cart a.remove:hover,
			.woocommerce.product-slider .owl-theme .owl-controls .owl-buttons > div:hover,
			.error-404 h1 span,
			.error-404 input.search-submit,
			.page-offline footer .social li a,
			.site-header.version-2 #menu-top > li > a:hover {
				background: #c99542;
			}
			.header-bot {
				background-color: #c99542;	
			}
			#menu-main > li.current-menu-item > a {
				background-image: -moz-linear-gradient(bottom, #c99542 0%, #ba8635 100%); /* gradient overlay */
				background-image: -o-linear-gradient(bottom, #c99542 0%, #ba8635 100%); /* gradient overlay */
				background-image: -webkit-linear-gradient(bottom, #c99542 0%, #ba8635 100%); /* gradient overlay */
				background-image: linear-gradient(bottom, #c99542 0%, #ba8635 100%); /* gradient overlay */
			}
			blockquote,
			address,
			q,
			.comment-respond .comment-form [class*="comment-form"] input:focus,
			.comment-respond .comment-form .comment-form-comment textarea:focus,
			.widget input:focus,
			.error-404 input.search-field:focus,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:focus,
			.jsn-bootstrap3 .wr-element-tab .tabs-below .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-left .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-right .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab.color .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li.active > a,
			.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li a:hover,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li.chosen a,
			.site-header.version-2 .header-top {
				border-color: #c99542;
			}
			.site .jsn-master .jsn-bootstrap .jsn-form-content input:focus,
			.site .jsn-master .jsn-bootstrap .jsn-form-content textarea:focus {
				border-color: #c99542 !important;
			}
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a {
				border-top-color: #c99542;
			}
			.counter-wrap .icon:before,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:before {
				border-bottom: 4px solid #c99542;
				border-top: 4px solid #c99542;
			}
			.counter-wrap .icon:after,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:after {
				border-left: 4px solid #c99542;
				border-right: 4px solid #c99542;
			}
			.counter-wrap.circle:hover .icon {
				-webkit-box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #c99542;
				-moz-box-shadow:    0 0 0 4px #fff inset, 0 0 0 2px #c99542;
				-ms-box-shadow:     0 0 0 4px #fff inset, 0 0 0 2px #c99542;
				box-shadow:         0 0 0 4px #fff inset, 0 0 0 2px #c99542;
			}
			.jsn-bootstrap3 .wr-element-testimonial.quotes-top .wr-testimonial-box,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a {
				border-left: 2px solid #c99542;
			}
			.jsn-bootstrap3 .wr-element-list.iconbg .wr-list-icons.wr-shape-circle li:hover .wr-icon-base {
				-webkit-box-shadow: 0 0 0 3px #fff inset, 0 0 0 3px #c99542;
				-moz-box-shadow:    0 0 0 3px #fff inset, 0 0 0 3px #c99542;
				-ms-box-shadow:     0 0 0 3px #fff inset, 0 0 0 3px #c99542;
				box-shadow:         0 0 0 3px #fff inset, 0 0 0 3px #c99542;
			}
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-state-default {
				border: 1px solid #c99542;
			}
			.site-branding .site-description,
			#menu-main li a,
			.site-footer .top .social li a:hover,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i {
				color: #ab7724;
			}
			.search-box > .wr-icon-search:hover,
			.search-box .search-form button:hover,
			.page-numbers li a.prev:hover,
			.page-numbers li a.next:hover,
			.widget .tagcloud a:hover,
			.site-footer .top .social li a,
			.breadcrumbs li.current,
			.breadcrumbs li a,
			.post-list.style-3 .more-link:hover,
			.shop-cart .cart-control span,
			.shop-cart .shop-item .buttons .button:hover,
			.style-switch a:hover,
			.woocommerce ul.products li.product .p-info .p-cart a.button:hover,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:hover,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div:hover,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.jsn-bootstrap3 .wr-element-heading.h-center:before,
			.jsn-bootstrap3 .wr-element-heading.h-center:after,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:before,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:after,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.page-offline footer .social li a,
			.error-404 input.search-submit {
				background: #ab7724;
			}
		</style>

	<?php 
    } elseif ('blue' == $color) {
        ?>

		<style>
			a,
			#menu-main li .sub-menu li a:hover,
			.entry-title a:hover,
			.entry-meta a:hover,
			.more-link,
			.counter-wrap:hover,
			.widget a,
			.widget ul li a:hover,
			.site-footer .widget a:hover,
			.post-list .entry-title a:hover,
			.post-list .entry-meta a:hover,
			.post-list.style-2 .entry-title a:hover,
			.post-list.style-2 .entry-meta a,
			.post-list.style-3 .right .post:hover .entry-title a,
			.post-list.style-3 .right .post:hover .entry-meta,
			.bx-controls-direction a i,
			.jsn-bootstrap3 a,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a i,
			.jsn-bootstrap3 .wr-element-accordion.no-bg .panel-title a:hover,
			.shop-cart .shop-item ul.product_list_widget li span,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce #content div.product p.price,
			.woocommerce #content div.product span.price,
			.woocommerce div.product p.price,
			.woocommerce div.product span.price,
			.woocommerce-page #content div.product p.price,
			.woocommerce-page #content div.product span.price,
			.woocommerce-page div.product p.price,
			.woocommerce-page div.product span.price,
			.widget.woocommerce ul li:hover:before,
			.widget.woocommerce ul li li:hover:before,
			.widget.woocommerce ins .amount,
			.woocommerce #content table.cart .product-name a:hover,
			.woocommerce table.cart .product-name a:hover,
			.woocommerce-page #content table.cart .product-name a:hover,
			.woocommerce-page table.cart .product-name a:hover,
			.woocommerce .cart-collaterals .cart_totals table td .amount,
			.woocommerce-page .cart-collaterals .cart_totals table td .amount,
			.error-404 h1,
			.site-header.version-2 .header-top .top-info,
			.site-header.version-2 #menu-main li .sub-menu li a:hover,
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a,
			.site-header.version-2 .search-form button,
			.site-header.version-2 .shop-cart .cart-control,
			.post-list.style-3 .right .entry-title a.active,
			.page-title h1 {
				color: #68a8aa;
			}
			.bg-red,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-header .wr-prtbl-title,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-footer .btn {
				background-color: #68a8aa !important;
			}
			button,
			input[type="button"],
			input[type="reset"],
			input[type="submit"],
			#menu-top > li > a:hover,
			.entry-thumb .posted-on,
			.widget .tagcloud a,
			.site-footer .top,
			.site-footer .widget ul li:hover:before,
			.back-to-top i:hover,
			.bx-controls-direction a i:hover,
			.page-numbers li span.current,
			.page-numbers li a:hover,
			.page-numbers li a.prev,
			.page-numbers li a.next,
			.comments-area .action-link a:hover,
			.comment-respond .comment-form .form-submit input[type="submit"],
			.post-list.style-3 .more-link,
			.blog-masonry .hentry .more-link:hover,
			.widget #wp-calendar caption,
			.counter-wrap:hover .icon,
			.counter-wrap.circle:hover .icon,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:before,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:after,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.left,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.right,
			.jsn-bootstrap3 .wr-element-testimonial .carousel.wr-testimonial ol.carousel-indicators li.active,
			.jsn-bootstrap3 .wr-element-heading.h-center,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-progressbar.mini.left-info .progress-bar-danger .sr-only,
			.jsn-bootstrap3 .wr-element-accordion.no-bg.has-icon .wr-icon-accordion:before,
			.shop-cart .shop-item .buttons .button,
			.style-switch a.active,
			.woocommerce ul.products li.product .p-info:before,
			.woocommerce-page ul.products li.product .p-info:before,
			.woocommerce ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce ul.products li.product .onsale,
			.woocommerce-page ul.products li.product .onsale,
			.woocommerce span.onsale,
			.woocommerce-page span.onsale,
			.woocommerce span.free-badge,
			.woocommerce-page span.free-badge,
			.woocommerce #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce #content nav.woocommerce-pagination ul li span.current,
			.woocommerce nav.woocommerce-pagination ul li a:focus,
			.woocommerce nav.woocommerce-pagination ul li a:hover,
			.woocommerce nav.woocommerce-pagination ul li span.current,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
			.woocommerce-page nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page nav.woocommerce-pagination ul li span.current,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div,
			.summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover,
			.single-share .social li a:hover,
			.woocommerce #content .quantity .minus:hover,
			.woocommerce #content .quantity .plus:hover,
			.woocommerce .quantity .minus:hover,
			.woocommerce .quantity .plus:hover,
			.woocommerce-page #content .quantity .minus:hover,
			.woocommerce-page #content .quantity .plus:hover,
			.woocommerce-page .quantity .minus:hover,
			.woocommerce-page .quantity .plus:hover,
			.woocommerce #content input.button.alt,
			.woocommerce #respond input#submit.alt,
			.woocommerce a.button.alt,
			.woocommerce button.button.alt,
			.woocommerce input.button.alt,
			.woocommerce-page #content input.button.alt,
			.woocommerce-page #respond input#submit.alt,
			.woocommerce-page a.button.alt,
			.woocommerce-page button.button.alt,
			.woocommerce-page input.button.alt,
			.woocommerce #content input.button,
			.woocommerce #respond input#submit,
			.woocommerce a.button,
			.woocommerce button.button,
			.woocommerce input.button,
			.woocommerce-page #content input.button,
			.woocommerce-page #respond input#submit,
			.woocommerce-page a.button,
			.woocommerce-page button.button,
			.woocommerce-page input.button,
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button,
			.woocommerce #content table.cart a.remove:hover,
			.woocommerce table.cart a.remove:hover,
			.woocommerce-page #content table.cart a.remove:hover,
			.woocommerce-page table.cart a.remove:hover,
			.woocommerce.product-slider .owl-theme .owl-controls .owl-buttons > div:hover,
			.error-404 h1 span,
			.error-404 input.search-submit,
			.page-offline footer .social li a,
			.site-header.version-2 #menu-top > li > a:hover {
				background: #68a8aa;
			}
			.header-bot {
				background-color: #68a8aa;	
			}
			#menu-main > li.current-menu-item > a {
				background-image: -moz-linear-gradient(bottom, #68a8aa 0%, #347c7e 100%); /* gradient overlay */
				background-image: -o-linear-gradient(bottom, #68a8aa 0%, #347c7e 100%); /* gradient overlay */
				background-image: -webkit-linear-gradient(bottom, #68a8aa 0%, #347c7e 100%); /* gradient overlay */
				background-image: linear-gradient(bottom, #68a8aa 0%, #347c7e 100%); /* gradient overlay */
			}
			blockquote,
			address,
			q,
			.comment-respond .comment-form [class*="comment-form"] input:focus,
			.comment-respond .comment-form .comment-form-comment textarea:focus,
			.widget input:focus,
			.error-404 input.search-field:focus,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:focus,
			.jsn-bootstrap3 .wr-element-tab .tabs-below .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-left .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-right .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab.color .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li.active > a,
			.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li a:hover,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li.chosen a,
			.site-header.version-2 .header-top {
				border-color: #68a8aa;
			}
			.site .jsn-master .jsn-bootstrap .jsn-form-content input:focus,
			.site .jsn-master .jsn-bootstrap .jsn-form-content textarea:focus {
				border-color: #68a8aa !important;
			}
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a {
				border-top-color: #68a8aa;
			}
			.counter-wrap .icon:before,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:before {
				border-bottom: 4px solid #68a8aa;
				border-top: 4px solid #68a8aa;
			}
			.counter-wrap .icon:after,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:after {
				border-left: 4px solid #68a8aa;
				border-right: 4px solid #68a8aa;
			}
			.counter-wrap.circle:hover .icon {
				-webkit-box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #68a8aa;
				-moz-box-shadow:    0 0 0 4px #fff inset, 0 0 0 2px #68a8aa;
				-ms-box-shadow:     0 0 0 4px #fff inset, 0 0 0 2px #68a8aa;
				box-shadow:         0 0 0 4px #fff inset, 0 0 0 2px #68a8aa;
			}
			.jsn-bootstrap3 .wr-element-testimonial.quotes-top .wr-testimonial-box,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a {
				border-left: 2px solid #68a8aa;
			}
			.jsn-bootstrap3 .wr-element-list.iconbg .wr-list-icons.wr-shape-circle li:hover .wr-icon-base {
				-webkit-box-shadow: 0 0 0 3px #fff inset, 0 0 0 3px #68a8aa;
				-moz-box-shadow:    0 0 0 3px #fff inset, 0 0 0 3px #68a8aa;
				-ms-box-shadow:     0 0 0 3px #fff inset, 0 0 0 3px #68a8aa;
				box-shadow:         0 0 0 3px #fff inset, 0 0 0 3px #68a8aa;
			}
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-state-default {
				border: 1px solid #68a8aa;
			}
			.site-branding .site-description,
			#menu-main li a,
			.site-footer .top .social li a:hover,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i {
				color: #4d8d8f;
			}
			.search-box > .wr-icon-search:hover,
			.search-box .search-form button:hover,
			.page-numbers li a.prev:hover,
			.page-numbers li a.next:hover,
			.widget .tagcloud a:hover,
			.site-footer .top .social li a,
			.breadcrumbs li.current,
			.breadcrumbs li a,
			.post-list.style-3 .more-link:hover,
			.shop-cart .cart-control span,
			.shop-cart .shop-item .buttons .button:hover,
			.style-switch a:hover,
			.woocommerce ul.products li.product .p-info .p-cart a.button:hover,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:hover,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div:hover,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.jsn-bootstrap3 .wr-element-heading.h-center:before,
			.jsn-bootstrap3 .wr-element-heading.h-center:after,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:before,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:after,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.page-offline footer .social li a,
			.error-404 input.search-submit {
				background: #4d8d8f;
			}
		</style>

	<?php 
    } elseif ('green' == $color) {
        ?>

		<style>
			a,
			#menu-main li .sub-menu li a:hover,
			.entry-title a:hover,
			.entry-meta a:hover,
			.more-link,
			.counter-wrap:hover,
			.widget a,
			.widget ul li a:hover,
			.site-footer .widget a:hover,
			.post-list .entry-title a:hover,
			.post-list .entry-meta a:hover,
			.post-list.style-2 .entry-title a:hover,
			.post-list.style-2 .entry-meta a,
			.post-list.style-3 .right .post:hover .entry-title a,
			.post-list.style-3 .right .post:hover .entry-meta,
			.bx-controls-direction a i,
			.jsn-bootstrap3 a,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a i,
			.jsn-bootstrap3 .wr-element-accordion.no-bg .panel-title a:hover,
			.shop-cart .shop-item ul.product_list_widget li span,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce #content div.product p.price,
			.woocommerce #content div.product span.price,
			.woocommerce div.product p.price,
			.woocommerce div.product span.price,
			.woocommerce-page #content div.product p.price,
			.woocommerce-page #content div.product span.price,
			.woocommerce-page div.product p.price,
			.woocommerce-page div.product span.price,
			.widget.woocommerce ul li:hover:before,
			.widget.woocommerce ul li li:hover:before,
			.widget.woocommerce ins .amount,
			.woocommerce #content table.cart .product-name a:hover,
			.woocommerce table.cart .product-name a:hover,
			.woocommerce-page #content table.cart .product-name a:hover,
			.woocommerce-page table.cart .product-name a:hover,
			.woocommerce .cart-collaterals .cart_totals table td .amount,
			.woocommerce-page .cart-collaterals .cart_totals table td .amount,
			.error-404 h1,
			.site-header.version-2 .header-top .top-info,
			.site-header.version-2 #menu-main li .sub-menu li a:hover,
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a,
			.site-header.version-2 .search-form button,
			.site-header.version-2 .shop-cart .cart-control,
			.post-list.style-3 .right .entry-title a.active,
			.page-title h1 {
				color: #68aa71;
			}
			.bg-red,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-header .wr-prtbl-title,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-footer .btn {
				background-color: #68aa71 !important;
			}
			button,
			input[type="button"],
			input[type="reset"],
			input[type="submit"],
			#menu-top > li > a:hover,
			.entry-thumb .posted-on,
			.widget .tagcloud a,
			.site-footer .top,
			.site-footer .widget ul li:hover:before,
			.back-to-top i:hover,
			.bx-controls-direction a i:hover,
			.page-numbers li span.current,
			.page-numbers li a:hover,
			.page-numbers li a.prev,
			.page-numbers li a.next,
			.comments-area .action-link a:hover,
			.comment-respond .comment-form .form-submit input[type="submit"],
			.post-list.style-3 .more-link,
			.blog-masonry .hentry .more-link:hover,
			.widget #wp-calendar caption,
			.counter-wrap:hover .icon,
			.counter-wrap.circle:hover .icon,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:before,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:after,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.left,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.right,
			.jsn-bootstrap3 .wr-element-testimonial .carousel.wr-testimonial ol.carousel-indicators li.active,
			.jsn-bootstrap3 .wr-element-heading.h-center,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-progressbar.mini.left-info .progress-bar-danger .sr-only,
			.jsn-bootstrap3 .wr-element-accordion.no-bg.has-icon .wr-icon-accordion:before,
			.shop-cart .shop-item .buttons .button,
			.style-switch a.active,
			.woocommerce ul.products li.product .p-info:before,
			.woocommerce-page ul.products li.product .p-info:before,
			.woocommerce ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce ul.products li.product .onsale,
			.woocommerce-page ul.products li.product .onsale,
			.woocommerce span.onsale,
			.woocommerce-page span.onsale,
			.woocommerce span.free-badge,
			.woocommerce-page span.free-badge,
			.woocommerce #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce #content nav.woocommerce-pagination ul li span.current,
			.woocommerce nav.woocommerce-pagination ul li a:focus,
			.woocommerce nav.woocommerce-pagination ul li a:hover,
			.woocommerce nav.woocommerce-pagination ul li span.current,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
			.woocommerce-page nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page nav.woocommerce-pagination ul li span.current,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div,
			.summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover,
			.single-share .social li a:hover,
			.woocommerce #content .quantity .minus:hover,
			.woocommerce #content .quantity .plus:hover,
			.woocommerce .quantity .minus:hover,
			.woocommerce .quantity .plus:hover,
			.woocommerce-page #content .quantity .minus:hover,
			.woocommerce-page #content .quantity .plus:hover,
			.woocommerce-page .quantity .minus:hover,
			.woocommerce-page .quantity .plus:hover,
			.woocommerce #content input.button.alt,
			.woocommerce #respond input#submit.alt,
			.woocommerce a.button.alt,
			.woocommerce button.button.alt,
			.woocommerce input.button.alt,
			.woocommerce-page #content input.button.alt,
			.woocommerce-page #respond input#submit.alt,
			.woocommerce-page a.button.alt,
			.woocommerce-page button.button.alt,
			.woocommerce-page input.button.alt,
			.woocommerce #content input.button,
			.woocommerce #respond input#submit,
			.woocommerce a.button,
			.woocommerce button.button,
			.woocommerce input.button,
			.woocommerce-page #content input.button,
			.woocommerce-page #respond input#submit,
			.woocommerce-page a.button,
			.woocommerce-page button.button,
			.woocommerce-page input.button,
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button,
			.woocommerce #content table.cart a.remove:hover,
			.woocommerce table.cart a.remove:hover,
			.woocommerce-page #content table.cart a.remove:hover,
			.woocommerce-page table.cart a.remove:hover,
			.woocommerce.product-slider .owl-theme .owl-controls .owl-buttons > div:hover,
			.error-404 h1 span,
			.error-404 input.search-submit,
			.page-offline footer .social li a,
			.site-header.version-2 #menu-top > li > a:hover {
				background: #68aa71;
			}
			.header-bot {
				background-color: #68aa71;	
			}
			#menu-main > li.current-menu-item > a {
				background-image: -moz-linear-gradient(bottom, #68aa71 0%, #3b9146 100%); /* gradient overlay */
				background-image: -o-linear-gradient(bottom, #68aa71 0%, #3b9146 100%); /* gradient overlay */
				background-image: -webkit-linear-gradient(bottom, #68aa71 0%, #3b9146 100%); /* gradient overlay */
				background-image: linear-gradient(bottom, #68aa71 0%, #3b9146 100%); /* gradient overlay */
			}
			blockquote,
			address,
			q,
			.comment-respond .comment-form [class*="comment-form"] input:focus,
			.comment-respond .comment-form .comment-form-comment textarea:focus,
			.widget input:focus,
			.error-404 input.search-field:focus,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:focus,
			.jsn-bootstrap3 .wr-element-tab .tabs-below .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-left .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-right .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab.color .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li.active > a,
			.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li a:hover,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li.chosen a,
			.site-header.version-2 .header-top {
				border-color: #68aa71;
			}
			.site .jsn-master .jsn-bootstrap .jsn-form-content input:focus,
			.site .jsn-master .jsn-bootstrap .jsn-form-content textarea:focus {
				border-color: #68aa71 !important;
			}
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a {
				border-top-color: #68aa71;
			}
			.counter-wrap .icon:before,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:before {
				border-bottom: 4px solid #68aa71;
				border-top: 4px solid #68aa71;
			}
			.counter-wrap .icon:after,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:after {
				border-left: 4px solid #68aa71;
				border-right: 4px solid #68aa71;
			}
			.counter-wrap.circle:hover .icon {
				-webkit-box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #68aa71;
				-moz-box-shadow:    0 0 0 4px #fff inset, 0 0 0 2px #68aa71;
				-ms-box-shadow:     0 0 0 4px #fff inset, 0 0 0 2px #68aa71;
				box-shadow:         0 0 0 4px #fff inset, 0 0 0 2px #68aa71;
			}
			.jsn-bootstrap3 .wr-element-testimonial.quotes-top .wr-testimonial-box,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a {
				border-left: 2px solid #68aa71;
			}
			.jsn-bootstrap3 .wr-element-list.iconbg .wr-list-icons.wr-shape-circle li:hover .wr-icon-base {
				-webkit-box-shadow: 0 0 0 3px #fff inset, 0 0 0 3px #68aa71;
				-moz-box-shadow:    0 0 0 3px #fff inset, 0 0 0 3px #68aa71;
				-ms-box-shadow:     0 0 0 3px #fff inset, 0 0 0 3px #68aa71;
				box-shadow:         0 0 0 3px #fff inset, 0 0 0 3px #68aa71;
			}
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-state-default {
				border: 1px solid #68aa71;
			}
			.site-branding .site-description,
			#menu-main li a,
			.site-footer .top .social li a:hover,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i {
				color: #4a8c53;
			}
			.search-box > .wr-icon-search:hover,
			.search-box .search-form button:hover,
			.page-numbers li a.prev:hover,
			.page-numbers li a.next:hover,
			.widget .tagcloud a:hover,
			.site-footer .top .social li a,
			.breadcrumbs li.current,
			.breadcrumbs li a,
			.post-list.style-3 .more-link:hover,
			.shop-cart .cart-control span,
			.shop-cart .shop-item .buttons .button:hover,
			.style-switch a:hover,
			.woocommerce ul.products li.product .p-info .p-cart a.button:hover,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:hover,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div:hover,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.jsn-bootstrap3 .wr-element-heading.h-center:before,
			.jsn-bootstrap3 .wr-element-heading.h-center:after,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:before,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:after,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.page-offline footer .social li a,
			.error-404 input.search-submit {
				background: #4a8c53;
			}
		</style>

	<?php 
    } elseif ('purple' == $color) {
        ?>

		<style>
			a,
			#menu-main li .sub-menu li a:hover,
			.entry-title a:hover,
			.entry-meta a:hover,
			.more-link,
			.counter-wrap:hover,
			.widget a,
			.widget ul li a:hover,
			.site-footer .widget a:hover,
			.post-list .entry-title a:hover,
			.post-list .entry-meta a:hover,
			.post-list.style-2 .entry-title a:hover,
			.post-list.style-2 .entry-meta a,
			.post-list.style-3 .right .post:hover .entry-title a,
			.post-list.style-3 .right .post:hover .entry-meta,
			.bx-controls-direction a i,
			.jsn-bootstrap3 a,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a i,
			.jsn-bootstrap3 .wr-element-accordion.no-bg .panel-title a:hover,
			.shop-cart .shop-item ul.product_list_widget li span,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist i,
			.woocommerce #content div.product p.price,
			.woocommerce #content div.product span.price,
			.woocommerce div.product p.price,
			.woocommerce div.product span.price,
			.woocommerce-page #content div.product p.price,
			.woocommerce-page #content div.product span.price,
			.woocommerce-page div.product p.price,
			.woocommerce-page div.product span.price,
			.widget.woocommerce ul li:hover:before,
			.widget.woocommerce ul li li:hover:before,
			.widget.woocommerce ins .amount,
			.woocommerce #content table.cart .product-name a:hover,
			.woocommerce table.cart .product-name a:hover,
			.woocommerce-page #content table.cart .product-name a:hover,
			.woocommerce-page table.cart .product-name a:hover,
			.woocommerce .cart-collaterals .cart_totals table td .amount,
			.woocommerce-page .cart-collaterals .cart_totals table td .amount,
			.error-404 h1,
			.site-header.version-2 .header-top .top-info,
			.site-header.version-2 #menu-main li .sub-menu li a:hover,
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a,
			.site-header.version-2 .search-form button,
			.site-header.version-2 .shop-cart .cart-control,
			.post-list.style-3 .right .entry-title a.active,
			.page-title h1 {
				color: #65759b;
			}
			.bg-red,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-header .wr-prtbl-title,
			.jsn-bootstrap3 .wr-element-pricing_table .wr-prtbl-cols.wr-prtbl-cols-featured .wr-prtbl-footer .btn {
				background-color: #65759b !important;
			}
			button,
			input[type="button"],
			input[type="reset"],
			input[type="submit"],
			#menu-top > li > a:hover,
			.entry-thumb .posted-on,
			.widget .tagcloud a,
			.site-footer .top,
			.site-footer .widget ul li:hover:before,
			.back-to-top i:hover,
			.bx-controls-direction a i:hover,
			.page-numbers li span.current,
			.page-numbers li a:hover,
			.page-numbers li a.prev,
			.page-numbers li a.next,
			.comments-area .action-link a:hover,
			.comment-respond .comment-form .form-submit input[type="submit"],
			.post-list.style-3 .more-link,
			.blog-masonry .hentry .more-link:hover,
			.widget #wp-calendar caption,
			.counter-wrap:hover .icon,
			.counter-wrap.circle:hover .icon,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:before,
			.jsn-bootstrap3 .wr-element-testimonial .wr-testimonial-meta .wr-testimonial-name:after,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.left,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control.right,
			.jsn-bootstrap3 .wr-element-testimonial .carousel.wr-testimonial ol.carousel-indicators li.active,
			.jsn-bootstrap3 .wr-element-heading.h-center,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-progressbar.mini.left-info .progress-bar-danger .sr-only,
			.jsn-bootstrap3 .wr-element-accordion.no-bg.has-icon .wr-icon-accordion:before,
			.shop-cart .shop-item .buttons .button,
			.style-switch a.active,
			.woocommerce ul.products li.product .p-info:before,
			.woocommerce-page ul.products li.product .p-info:before,
			.woocommerce ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:before,
			.woocommerce ul.products li.product .onsale,
			.woocommerce-page ul.products li.product .onsale,
			.woocommerce span.onsale,
			.woocommerce-page span.onsale,
			.woocommerce span.free-badge,
			.woocommerce-page span.free-badge,
			.woocommerce #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce #content nav.woocommerce-pagination ul li span.current,
			.woocommerce nav.woocommerce-pagination ul li a:focus,
			.woocommerce nav.woocommerce-pagination ul li a:hover,
			.woocommerce nav.woocommerce-pagination ul li span.current,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
			.woocommerce-page nav.woocommerce-pagination ul li a:focus,
			.woocommerce-page nav.woocommerce-pagination ul li a:hover,
			.woocommerce-page nav.woocommerce-pagination ul li span.current,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div,
			.summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover,
			.single-share .social li a:hover,
			.woocommerce #content .quantity .minus:hover,
			.woocommerce #content .quantity .plus:hover,
			.woocommerce .quantity .minus:hover,
			.woocommerce .quantity .plus:hover,
			.woocommerce-page #content .quantity .minus:hover,
			.woocommerce-page #content .quantity .plus:hover,
			.woocommerce-page .quantity .minus:hover,
			.woocommerce-page .quantity .plus:hover,
			.woocommerce #content input.button.alt,
			.woocommerce #respond input#submit.alt,
			.woocommerce a.button.alt,
			.woocommerce button.button.alt,
			.woocommerce input.button.alt,
			.woocommerce-page #content input.button.alt,
			.woocommerce-page #respond input#submit.alt,
			.woocommerce-page a.button.alt,
			.woocommerce-page button.button.alt,
			.woocommerce-page input.button.alt,
			.woocommerce #content input.button,
			.woocommerce #respond input#submit,
			.woocommerce a.button,
			.woocommerce button.button,
			.woocommerce input.button,
			.woocommerce-page #content input.button,
			.woocommerce-page #respond input#submit,
			.woocommerce-page a.button,
			.woocommerce-page button.button,
			.woocommerce-page input.button,
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-range,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button,
			.woocommerce #content table.cart a.remove:hover,
			.woocommerce table.cart a.remove:hover,
			.woocommerce-page #content table.cart a.remove:hover,
			.woocommerce-page table.cart a.remove:hover,
			.woocommerce.product-slider .owl-theme .owl-controls .owl-buttons > div:hover,
			.error-404 h1 span,
			.error-404 input.search-submit,
			.page-offline footer .social li a,
			.site-header.version-2 #menu-top > li > a:hover {
				background: #65759b;
			}
			.header-bot {
				background-color: #65759b;	
			}
			#menu-main > li.current-menu-item > a {
				background-image: -moz-linear-gradient(bottom, #65759b 0%, #485d8f 100%); /* gradient overlay */
				background-image: -o-linear-gradient(bottom, #65759b 0%, #485d8f 100%); /* gradient overlay */
				background-image: -webkit-linear-gradient(bottom, #65759b 0%, #485d8f 100%); /* gradient overlay */
				background-image: linear-gradient(bottom, #65759b 0%, #485d8f 100%); /* gradient overlay */
			}
			blockquote,
			address,
			q,
			.comment-respond .comment-form [class*="comment-form"] input:focus,
			.comment-respond .comment-form .comment-form-comment textarea:focus,
			.widget input:focus,
			.error-404 input.search-field:focus,
			.jsn-bootstrap3 .wr-element-list.border li:hover .wr-icon-base,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:hover,
			.jsn-bootstrap3 .wr-element-tab .nav-tabs > li.active > a:focus,
			.jsn-bootstrap3 .wr-element-tab .tabs-below .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-left .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab .tabs-right .nav-tabs li.active a,
			.jsn-bootstrap3 .wr-element-tab.color .nav-tabs > li.active > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li.active > a,
			.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li a:hover,
			.woocommerce .widget.yith-woo-ajax-navigation .yith-wcan-group li.chosen a,
			.site-header.version-2 .header-top {
				border-color: #65759b;
			}
			.site .jsn-master .jsn-bootstrap .jsn-form-content input:focus,
			.site .jsn-master .jsn-bootstrap .jsn-form-content textarea:focus {
				border-color: #65759b !important;
			}
			.site-header.version-2 #menu-main > li > a:hover,
			.site-header.version-2 #menu-main > li.current-menu-item > a {
				border-top-color: #65759b;
			}
			.counter-wrap .icon:before,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:before {
				border-bottom: 4px solid #65759b;
				border-top: 4px solid #65759b;
			}
			.counter-wrap .icon:after,
			.jsn-bootstrap3 .wr-element-list.border .wr-icon-base:after {
				border-left: 4px solid #65759b;
				border-right: 4px solid #65759b;
			}
			.counter-wrap.circle:hover .icon {
				-webkit-box-shadow: 0 0 0 4px #fff inset, 0 0 0 2px #65759b;
				-moz-box-shadow:    0 0 0 4px #fff inset, 0 0 0 2px #65759b;
				-ms-box-shadow:     0 0 0 4px #fff inset, 0 0 0 2px #65759b;
				box-shadow:         0 0 0 4px #fff inset, 0 0 0 2px #65759b;
			}
			.jsn-bootstrap3 .wr-element-testimonial.quotes-top .wr-testimonial-box,
			.jsn-bootstrap3 .wr-element-accordion .panel-title a {
				border-left: 2px solid #65759b;
			}
			.jsn-bootstrap3 .wr-element-list.iconbg .wr-list-icons.wr-shape-circle li:hover .wr-icon-base {
				-webkit-box-shadow: 0 0 0 3px #fff inset, 0 0 0 3px #65759b;
				-moz-box-shadow:    0 0 0 3px #fff inset, 0 0 0 3px #65759b;
				-ms-box-shadow:     0 0 0 3px #fff inset, 0 0 0 3px #65759b;
				box-shadow:         0 0 0 3px #fff inset, 0 0 0 3px #65759b;
			}
			.woocommerce .widget_price_filter .price_slider_wrapper .ui-state-default {
				border: 1px solid #65759b;
			}
			.site-branding .site-description,
			#menu-main li a,
			.site-footer .top .social li a:hover,
			.woocommerce ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i,
			.woocommerce-page ul.products li.product .p-inner .p-image .yith-wcwl-add-to-wishlist:hover i {
				color: #49597f;
			}
			.search-box > .wr-icon-search:hover,
			.search-box .search-form button:hover,
			.page-numbers li a.prev:hover,
			.page-numbers li a.next:hover,
			.widget .tagcloud a:hover,
			.site-footer .top .social li a,
			.breadcrumbs li.current,
			.breadcrumbs li a,
			.post-list.style-3 .more-link:hover,
			.shop-cart .cart-control span,
			.shop-cart .shop-item .buttons .button:hover,
			.style-switch a:hover,
			.woocommerce ul.products li.product .p-info .p-cart a.button:hover,
			.woocommerce-page ul.products li.product .p-info .p-cart a.button:hover,
			#p-thumb.owl-theme .owl-controls .owl-buttons > div:hover,
			.woocommerce .widget_price_filter .price_slider_wrapper .price_slider_amount .button:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.jsn-bootstrap3 .wr-element-heading.h-center:before,
			.jsn-bootstrap3 .wr-element-heading.h-center:after,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:before,
			.jsn-bootstrap3 .wr-element-heading.h-center > *:after,
			.jsn-bootstrap3 .wr-element-tab.multi-color .nav-tabs > li > a:hover,
			.jsn-bootstrap3 .wr-element-testimonial .carousel-control:hover,
			.page-offline footer .social li a,
			.error-404 input.search-submit {
				background: #49597f;
			}
		</style>

	<?php 
    }
    ?>

	<style>
		<?php 
    if ($body_color || $body_bg_color) {
        ?>
		body {
			color: <?php 
        echo $body_color;
        ?>
;
			background: <?php 
        echo $body_bg_color;
        ?>
;
		}
		<?php 
    }
    if ($main_menu_color) {
        ?>

			#menu-main > li > a { color: <?php 
        echo $main_menu_color;
        ?>
; }

		<?php 
    }
    if ($heading_color) {
        ?>

			h1, h2, h3, h4, h5, h6 { color: <?php 
        echo $heading_color;
        ?>
; }

		<?php 
    }
    if ($footer_bg_color) {
        ?>

			.site-footer .bot { background: <?php 
        echo $footer_bg_color;
        ?>
; }

		<?php 
    }
    if ($page_title_color || $page_title_bg_color || $page_title_bg_image || $page_title_align) {
        ?>
			.page-title {
				background-color: <?php 
        echo $page_title_bg_color;
        ?>
;
				background-image: url(<?php 
        echo esc_url($page_title_bg_image);
        ?>
);
				background-repeat: <?php 
        echo $page_title_repeat;
        ?>
;
				background-position: <?php 
        echo $page_title_position;
        ?>
 top;
				background-attachment: <?php 
        echo $page_title_attach;
        ?>
;
			}
			.page-title h1 {
				color: <?php 
        echo $page_title_color;
        ?>
;
				text-align: <?php 
        echo $page_title_align;
        ?>
;
			}
			
		<?php 
    }
    ?>
	</style>
	<?php 
}
Esempio n. 16
0
		<div class="container">
			<nav id="site-navigation" class="main-navigation" <?php 
wr_ferado_schema_metadata(array('context' => 'nav'));
?>
>
				<button class="menu-toggle"><i class="dashicons dashicons-menu"></i></button>
				<?php 
wp_nav_menu(array('theme_location' => 'main_menu', 'container' => false, 'menu_id' => 'menu-main', 'fallback_cb' => ''));
?>
			</nav><!-- #site-navigation -->
			<div class="right-bot">
				<?php 
if (wr_ferado_theme_option('wr_search_box')) {
    ?>
					<form class="search-form" role="search" method="get" action="<?php 
    echo esc_url(home_url('/'));
    ?>
">
						<input name="s" type="text" size="15" placeholder="<?php 
    echo esc_attr(wr_ferado_theme_option('wr_search_box_text'));
    ?>
" />
						<button type="submit" value=""><i class="wr-icon-search"></i></button>
					</form>
				<?php 
}
?>
			</div><!-- .right-bot -->
		</div><!-- .container -->
	</div><!-- .header-bot -->
</header><!-- #masthead -->
Esempio n. 17
0
						<form class="search-form" role="search" method="get" action="<?php 
    echo esc_url(home_url('/'));
    ?>
">
							<input name="s" type="text" size="20" maxlength="20" placeholder="<?php 
    echo esc_attr(wr_ferado_theme_option('wr_search_box_text'));
    ?>
" />
							<button type="submit" value=""><i class="wr-icon-search"></i></button>
						</form>
					</div><!-- .search-box -->
				<?php 
}
?>
				<?php 
if (class_exists('Woocommerce') && wr_ferado_theme_option('wr_wcm_shop_cart')) {
    wr_ferado_shoping_cart();
}
?>
			</div><!-- .right-bot -->

			<nav id="site-navigation" class="main-navigation" <?php 
wr_ferado_schema_metadata(array('context' => 'nav'));
?>
>
				<button class="menu-toggle"><i class="dashicons dashicons-menu"></i></button>
				<?php 
wp_nav_menu(array('theme_location' => 'main_menu', 'container' => false, 'menu_id' => 'menu-main', 'fallback_cb' => ''));
?>
			</nav><!-- #site-navigation -->
		</div><!-- .container -->
Esempio n. 18
0
 function wr_ferado_wcm_layout()
 {
     $wcm_layout = wr_ferado_theme_option('wr_wcm_layout');
     $classes = array();
     switch ($wcm_layout) {
         case 'main':
             $classes[] = 'wcm-full-width';
             break;
         case 'left-main':
             $classes[] = 'wcm-left-content';
             break;
         case 'main-right':
             $classes[] = 'wcm-content-right';
             break;
     }
     return $classes;
 }
Esempio n. 19
0
?>
</head>

<body <?php 
body_class();
wr_ferado_schema_metadata(array('context' => 'body'));
?>
>
	<?php 
if (wr_ferado_theme_option('wr_loading')) {
    ?>
		<div id="pageloader">
			<div id="loader"></div>
			<div class="loader-section left"></div>
			<div class="loader-section right"></div>
		</div>
	<?php 
}
?>
	
	<div id="page" class="hfeed site">
		
		<?php 
if ('header-v1' == wr_ferado_theme_option('wr_header_layout')) {
    include_once get_template_directory() . '/inc/structure/header-v1.php';
} else {
    include_once get_template_directory() . '/inc/structure/header-v2.php';
}
?>

		<div id="content" class="site-content">
Esempio n. 20
0
<?php

/**
 * Product Loop Start
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.0
 */
$class = '';
if ('0' == wr_ferado_theme_option('wr_wcm_list_product_layout')) {
    $class = ' list-style';
}
?>
	<ul class="products <?php 
echo '' . $class;
?>
">