PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
themes
/
leather_market
/
templatemela
/
controlpanel
<?php add_action( 'wp_head', 'tmpmela_customstyle' ); function tmpmela_customstyle() { ?> <?php $font_family1 = get_option('tmpmela_bodyfont'); $font_family1 = str_replace(' ', '+', $font_family1); $font_family2 = get_option('tmpmela_navfont'); $font_family2 = str_replace(' ', '+', $font_family2); $font_family3 = get_option('tmpmela_h1font'); $font_family3 = str_replace(' ', '+', $font_family3); $font_family4 = get_option('tmpmela_h2font'); $font_family4 = str_replace(' ', '+', $font_family4); $font_family5 = get_option('tmpmela_h3font'); $font_family5 = str_replace(' ', '+', $font_family5); $font_family6 = get_option('tmpmela_h4font'); $font_family6 = str_replace(' ', '+', $font_family6); $font_family7 = get_option('tmpmela_h5font'); $font_family7 = str_replace(' ', '+', $font_family7); $font_family8 = get_option('tmpmela_h6font'); $font_family8 = str_replace(' ', '+', $font_family8); $font_family9 = get_option('tmpmela_footerfont'); $font_family9 = str_replace(' ', '+', $font_family9); // REMOVES DUPLICATE GOOGLE FONT CALL $fonts_array = array($font_family1,$font_family2,$font_family3,$font_family4,$font_family5,$font_family6,$font_family7,$font_family8,$font_family9); // REMOVES DUPLICATE GOOGLE FONT CALL $fonts_array= array_unique($fonts_array); foreach ($fonts_array as $key => $val) { if($val!='' && $val!='please-select' && $val!='Other+Fonts' && $val!='Open+Sans'){ ?> <link href='https://fonts.googleapis.com/css?family=<?php echo esc_attr($val); ?>' rel='stylesheet' type='text/css' /> <?php } } // end REMOVES DUPLICATE GOOGLE FONT CALL ?> <style type="text/css"> <?php if( (get_option('tmpmela_h1font') == "Other+Fonts") || get_option('tmpmela_h1font') == "please-select"){ if (get_option('tmpmela_h1font_other') != ""){ ?> h1 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h1font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h1font') != "" && get_option('tmpmela_h1font') != "please-select"){ ?> h1 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h1font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if (get_option('tmpmela_h1color') != ""){ ?> h1 { color:#<?php echo esc_attr(get_option('tmpmela_h1color')); ?>; } <?php } ?> <?php if( (get_option('tmpmela_h2font') == "Other+Fonts") || get_option('tmpmela_h2font') == "please-select"){ if (get_option('tmpmela_h2font_other') != ""){ ?> h2 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h2font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h2font') != "" && get_option('tmpmela_h2font') != "please-select"){ ?> h2 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h2font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if(get_option('tmpmela_h2color') != ""){ ?> h2 { color:#<?php echo esc_attr(get_option('tmpmela_h2color')); ?>; } <?php } ?> <?php if( (get_option('tmpmela_h3font') == "Other+Fonts") || get_option('tmpmela_h3font') == "please-select"){ if (get_option('tmpmela_h3font_other') != ""){ ?> h3 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h3font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h3font') != "" && get_option('tmpmela_h3font') != "please-select"){ ?> h3 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h3font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if (get_option('tmpmela_h3color') != ""){ ?> h3 { color:#<?php echo esc_attr(get_option('tmpmela_h3color')); ?>;} <?php } ?> <?php if( (get_option('tmpmela_h4font') == "Other+Fonts") || get_option('tmpmela_h4font') == "please-select"){ if (get_option('tmpmela_h4font_other') != ""){ ?> h4 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h4font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h4font') != "" && get_option('tmpmela_h4font') != "please-select"){ ?> h4 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h4font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if(get_option('tmpmela_h4color') != ""){ ?> h4 { color:#<?php echo esc_attr(get_option('tmpmela_h4color')); ?>; } <?php } ?> <?php if( (get_option('tmpmela_h5font') == "Other+Fonts") || get_option('tmpmela_h5font') == "please-select"){ if (get_option('tmpmela_h5font_other') != ""){ ?> h5 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h5font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h5font') != "" && get_option('tmpmela_h5font') != "please-select"){ ?> h5 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h5font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if(get_option('tmpmela_h5color') != ""){ ?> h5 { color:#<?php echo esc_attr(get_option('tmpmela_h5color')); ?>; } <?php } ?> <?php if( (get_option('tmpmela_h6font') == "Other+Fonts") || get_option('tmpmela_h6font') == "please-select"){ if (get_option('tmpmela_h6font_other') != ""){ ?> h6 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h6font_other'))); ?>', Arial, Helvetica, sans-serif; } <?php } } elseif(get_option('tmpmela_h6font') != "" && get_option('tmpmela_h6font') != "please-select"){ ?> h6 { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_h6font'))); ?>', Arial, Helvetica, sans-serif; } <?php } ?> <?php if(get_option('tmpmela_h6color') != ""){ ?> h6 { color:#<?php echo esc_attr(get_option('tmpmela_h6color')); ?>; } <?php } ?> a,.post-nav-link { color:#<?php echo esc_attr(get_option('tmpmela_link_color')); ?>; } a:hover ,.header-tag-widget .tagcloud a:hover,.woocommerce ul.products li.product .product-name:hover, li.product a:hover .product-name, .entry-meta a:hover , .tabs a.current, a.active, .entry-thumbnail .comments-link a:hover, .current-cat > a,.woocommerce .entry-summary .yith-wcwl-wishlistexistsbrowse a:hover, .woocommerce .entry-summary .yith-wcwl-wishlistaddedbrowse a:hover, .woocommerce .entry-summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover, .woocommerce .entry-summary a.compare.button:hover, .woocommerce ul.products li .container-inner .wcpc_compare a.button:hover, .woocommerce .entry-summary .compare.button:hover, .woocommerce .entry-summary .yith-wcwl-add-to-wishlist .add_to_wishlist:hover:before, .woocommerce .entry-summary a.compare.button.added:hover, .woocommerce .entry-summary .yith-wcwl-wishlistexistsbrowse a:hover:before, .woocommerce .entry-summary .compare.button:hover:before, .woocommerce .entry-summary .compare.button:hover:before, .woocommerce .entry-summary a.compare.button.added:hover:before, .woocommerce .summary .product_meta .posted_in a:hover, .woocommerce .summary .product_meta .tagged_as a:hover, .brand span a:hover, .social a:hover, .post-navigation a:hover .fa, .woocommerce .entry-summary .yith-wcwl-wishlistaddedbrowse a:hover:before,.post-nav-link:hover, .primary-sidebar .widget ul > li:hover:before { color:#<?php echo esc_attr(get_option('tmpmela_hoverlink_color')); ?>; } .site-footer .widget-title, #menu-footer-navigation > li > a{ color:#<?php echo esc_attr(get_option('tmpmela_footer_title_color')); ?>; } .footer a, .site-footer a, .site-footer, .footer-middle li .sub-menu li a{ color:#<?php echo esc_attr(get_option('tmpmela_footerlink_color')); ?>; } .footer a:hover, .footer .footer-links li a:hover, .site-footer a:hover, .footer-middle li .sub-menu li a:hover { color:#<?php echo esc_attr(get_option('tmpmela_footerhoverlink_color')); ?>; } .site-footer { background-color:#<?php echo esc_attr(get_option('tmpmela_footer_bkg_color')) ; ?>; <?php if(get_option('tmpmela_footer_background_upload')!=''){ ?> background-image: url("<?php echo esc_url(get_option('tmpmela_footer_background_upload')); ?>"); background-position:<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_footer_back_position'))); ?>; background-repeat:<?php echo esc_attr(get_option('tmpmela_footer_back_repeat')); ?>; background-attachment:<?php echo esc_attr(get_option('tmpmela_footer_back_attachment')); ?>; <?php } ?> } body { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_bodyfont'))); ?>', Arial, sans-serif; background-color:#<?php echo esc_attr(get_option('tmpmela_bkg_color')) ; ?> ; color:#<?php echo esc_attr(get_option('tmpmela_bodyfont_color')); ?>; } body,.outer-container { background-color:#<?php echo esc_attr(get_option('tmpmela_bkg_color')) ; ?> ; <?php if(get_option('tmpmela_background_upload')!=''){ ?> background-image: url("<?php echo esc_attr(get_option('tmpmela_background_upload')); ?>"); background-position:<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_back_position'))); ?>; background-repeat:<?php echo get_option('tmpmela_back_repeat'); ?>; background-attachment:<?php echo esc_attr(get_option('tmpmela_back_attachment')); ?>; <?php } ?> color:#<?php echo esc_attr(get_option('tmpmela_bodyfont_color')); ?>; } button, input, select, textarea {font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_bodyfont'))); ?>', Arial, sans-serif;} .page-title { background-color:#<?php echo esc_attr(get_option('tmpmela_breadcrumb_bkg_color')) ; ?>; <?php if(get_option('tmpmela_breadcrumb_image')!=''){ ?> background-image: url("<?php echo esc_attr(get_option('tmpmela_breadcrumb_image')); ?>"); background-attachment:<?php echo esc_attr(get_option('tmpmela_breadcrumb_back_attachment')); ?>; background-position:<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_breadcrumb_back_position'))); ?>; background-repeat:<?php echo get_option('tmpmela_breadcrumb_back_repeat'); ?>; <?php } ?> } .mega-menu ul li a, .login-out a {color:#<?php echo esc_attr(get_option('tmpmela_top_menu_text_color')); ?>; } .mega-menu ul li a:hover {color:#<?php echo esc_attr(get_option('tmpmela_top_menu_texthover_color')); ?>; } .mega-menu ul > li.shop-menu > div.shop-product-outer > ul > li > a {color:#<?php echo esc_attr(get_option('tmpmela_sub_menu_title_color')); ?>; } .mega-menu ul > li.shop-menu > div.shop-product-outer > ul > li > a:hover {color:#<?php echo esc_attr(get_option('tmpmela_sub_menu_title_hover_color')); ?>; } .mega-menu ul li .sub-menu a, .mobile-menu ul.sub-menu li a, .mega-menu ul li .children a, .mobile-menu ul.children li a {color:#<?php echo esc_attr(get_option('tmpmela_sub_menu_text_color')); ?>; } .mega-menu ul li .sub-menu a:hover, .mobile-menu ul.sub-menu li a:hover {color:#<?php echo esc_attr(get_option('tmpmela_sub_menu_texthover_color')); ?>; } .mega-menu ul li .sub {background-color:#<?php echo esc_attr(get_option('tmpmela_sub_menu_bkg_color')) ; ?> ; } .sticky-menu .header-style, .home.blog .site-header, .site-header{ background-color:<?php echo tmpmela_hex_to_rgba(esc_attr(get_option('tmpmela_header_top_bkg_color'))); ?>; <?php if(get_option('tmpmela_header_background_upload')!=''){ ?> background-image: url("<?php echo esc_attr(get_option('tmpmela_header_background_upload')); ?>"); background-position:<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_header_back_position'))); ?>; background-repeat:<?php echo esc_attr(get_option('tmpmela_header_back_repeat')); ?>; background-attachment:<?php echo esc_attr(get_option('tmpmela_header_back_attachment')); ?>; <?php } ?> } .topbar-outer { background-color:#<?php echo esc_attr(get_option('tmpmela_topbar_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_topbar_text_color')); ?>; } .topbar-outer a { color:#<?php echo esc_attr(get_option('tmpmela_topbar_link_color')); ?>; } .topbar-outer a:hover { color:#<?php echo esc_attr(get_option('tmpmela_topbar_link_hover_color')); ?>; } .header-bottom{ background:<?php echo tmpmela_hex_to_rgba(esc_attr(get_option('tmpmela_header_bottom_bkg_color')),esc_attr(get_option('tmpmela_header_bottom_bkg_opacity_color'))); ?> } .header-top { background: #<?php echo get_option('tmpmela_header_top_bkg_color1');?>; background: -moz-linear-gradient(top, #<?php echo get_option('tmpmela_header_top_bkg_color1');?> 0%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?> 100%); background: -webkit-gradient(top, right top, color-stop(0%, #<?php echo get_option('tmpmela_header_top_bkg_color1');?>), color-stop(100%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?>)); background: -webkit-linear-gradient(top, #<?php echo get_option('tmpmela_header_top_bkg_color1');?> 0%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?> 100%); background: -o-linear-gradient(top, #<?php echo get_option('tmpmela_header_top_bkg_color1');?> 0%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?> 100%); background: -ms-linear-gradient(top, #<?php echo get_option('tmpmela_header_top_bkg_color1');?> 0%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?> 100%); background: linear-gradient(top, #<?php echo get_option('tmpmela_header_top_bkg_color1');?> 0%, #<?php echo get_option('tmpmela_header_top_bkg_color2');?> 100%); } .box-category { background:<?php echo tmpmela_hex_to_rgba(esc_attr(get_option('tmpmela_navbar_category_title_bg_color'))); ?>; color: <?php echo tmpmela_hex_to_rgba(esc_attr(get_option('tmpmela_categoty_title1_text_color'))); ?>; } .header-category .product-categories{background-color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_bg_color')); ?>;} .header-category ul.sidebar-category-inner > li a ,.more-wrap{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_link_color')); ?>;} .header-category ul.sidebar-category-inner > li a:hover ,.more-wrap:hover{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_link_hover_color')); ?>;} .sidebar-category-inner li .sub li.mega-hdr a.mega-hdr-a{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_child_link_color')); ?>;} .sidebar-category-inner li .sub li.mega-hdr a.mega-hdr-a:hover{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_child_link_hover_color')); ?>;} .header-category .sub-container ul li > a{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_sub_child_link_color')); ?>;} .header-category .sub-container ul li > a:hover{color:#<?php echo esc_attr(get_option('tmpmela_sidebar_category_sub_child_link_hover_color')); ?>;} .view-offer .view-offer-link {color:#<?php echo esc_attr(get_option('tmpmela_header_bottom_view_offer_link_color')); ?>;} .view-offer .view-offer-link:hover {color:#<?php echo esc_attr(get_option('tmpmela_header_bottom_view_offer_link_hover_color')); ?>;} .widget button, .widget input[type="button"], .widget input[type="reset"], .widget input[type="submit"], input[type="button"], input[type="reset"], input[type="submit"], a.button, button, .contributor-posts-link, .button_content_inner a, .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, .elementor-widget-wp-widget-newsletterwidgetminimal .tnp .tnp-submit, .widget .tnp .tnp-submit, .tnp .tnp-submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce .wishlist_table td.product-add-to-cart a, .woocommerce-page input.button:hover,.woocommerce #content input.button.disabled,.woocommerce #content input.button:disabled,.woocommerce #respond input#submit.disabled,.woocommerce #respond input#submit:disabled, .woocommerce a.button.disabled,.woocommerce a.button:disabled,.woocommerce button.button.disabled,.woocommerce button.button:disabled,.woocommerce input.button.disabled,.woocommerce input.button:disabled, .woocommerce-page #content input.button.disabled,.woocommerce-page #content input.button:disabled,.woocommerce-page #respond input#submit.disabled,.woocommerce-page #respond input#submit:disabled,.woocommerce-page a.button.disabled,.woocommerce-page a.button:disabled, .woocommerce-page button.button.disabled,.woocommerce-page button.button:disabled,.woocommerce-page input.button.disabled,.woocommerce-page input.button:disabled, .loadgridlist-wrapper .woocount, .woocommerce div.product form.cart .button, .woocommerce-page div.product form.cart .button, .paging-navigation .page-numbers, .page-links a, .woocommerce-pagination span, .woocommerce-pagination a, .woocommerce-form button[type="submit"], .woocommerce .button.yith-wcqv-button, .entry-content .wcmp_regi_main .button { font-family:'<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_button_font_family'))); ?>', Arial, Helvetica, sans-serif; background-color:#<?php echo esc_attr(get_option('tmpmela_button_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_button_text_color')); ?>; } .widget input[type="button"]:hover,.widget input[type="button"]:focus, .widget input[type="reset"]:hover,.widget input[type="reset"]:focus, .widget input[type="submit"]:hover,.widget input[type="submit"]:focus, input[type="button"]:hover,input[type="button"]:focus,input[type="reset"]:hover, input[type="reset"]:focus,input[type="submit"]:hover,input[type="submit"]:focus, a.button:hover,a.button:focus,button:hover,button:focus, .contributor-posts-link:hover, .calloutarea_button a.button:hover,.calloutarea_button a.button:focus, .button_content_inner a:hover,.button_content_inner a:focus, .woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .loadgridlist-wrapper .woocount:hover, .woocommerce .wishlist_table td.product-add-to-cart a:hover, .elementor-widget-wp-widget-newsletterwidgetminimal .tnp .tnp-submit:hover, .paging-navigation a:hover, .paging-navigation .page-numbers.current, .page-links a:hover,.post-page-numbers.current, .woocommerce-pagination span.current, .woocommerce-pagination a:hover, .woocommerce .button.yith-wcqv-button:hover, .woocommerce div.product form.cart .button:hover, .woocommerce-page div.product form.cart .button:hover, .woocommerce-MyAccount-content p .button, .blog-posts-content .container:hover .read-more .button, .read-more .read-more-link.button:hover, .entry-content .wcmp_regi_main .button:hover, .sticky-post { background-color:#<?php echo esc_attr(get_option('tmpmela_button_hover_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_button_hover_text_color')); ?>; } .woocommerce ul.products li.product .product_type_simple, .woocommerce-page ul.products li.product .product_type_simple, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .product_type_grouped, .woocommerce ul.products li.product .product_type_external, .woocommerce-page ul.products li.product .product_type_external, .woocommerce ul.products li.product .product_type_variable, .woocommerce-page ul.products li.product .product_type_variable, .woocommerce .button.yith-wcqv-button, .woocommerce-page .button.yith-wcqv-button, .woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist, .woocommerce .yith-wcwl-wishlistaddedbrowse a, .woocommerce .yith-wcwl-wishlistexistsbrowse a, .woocommerce ul.products li .container-inner .compare-button a { background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_product_button_text_color')); ?>; } .woocommerce ul.products li.product .product_type_simple:hover, .woocommerce-page ul.products li.product .product_type_simple:hover, .woocommerce ul.products li.product .product_type_grouped:hover, .woocommerce-page ul.products li.product .product_type_grouped:hover, .woocommerce ul.products li.product .product_type_external:hover, .woocommerce-page ul.products li.product .product_type_external:hover, .woocommerce ul.products li.product .product_type_variable:hover, .woocommerce-page ul.products li.product .product_type_variable:hover, .woocommerce .button.yith-wcqv-button:hover, .woocommerce-page .button.yith-wcqv-button:hover, .woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover, .woocommerce .yith-wcwl-wishlistaddedbrowse a:hover, .woocommerce .yith-wcwl-wishlistexistsbrowse a:hover, .woocommerce ul.products li .container-inner .compare-button a:hover { background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_hover_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_product_button_text_hover_color')); ?>; } .testmonial-icon .fa { color:#<?php echo esc_attr(get_option('tmpmela_hoverlink_color')); ?>; } .sk-folding-cube .sk-cube::before, #to_top,.post-nav-link::after { background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_color')); ?>; } #to_top::before { color:#<?php echo esc_attr(get_option('tmpmela_product_button_text_color')); ?>; } #to_top:hover { background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_hover_color')); ?>; } #to_top:hover::before { color:#<?php echo esc_attr(get_option('tmpmela_product_button_text_hover_color')); ?>; } .quantity input.plus, .quantity input.minus,.site-footer .follow-us a, .woocommerce-MyAccount-navigation ul li,body .comment-reply-link, .woocommerce-tabs ul.tabs li.active a,.woocommerce-tabs ul.tabs li a:hover { background-color:#<?php echo esc_attr(get_option('tmpmela_secondary_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_bodyfont_color')); ?>; } .quantity input.plus:hover, .quantity input.minus:hover, .site-footer .follow-us a:hover, .woocommerce-MyAccount-navigation ul li.is-active, .woocommerce-MyAccount-navigation ul li:hover,body .comment-reply-link:hover,.tagcloud a:hover { background-color:#<?php echo esc_attr(get_option('tmpmela_button_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_button_text_color')); ?>; } .woocommerce-MyAccount-navigation ul li a { color:#<?php echo esc_attr(get_option('tmpmela_bodyfont_color')); ?>; } .woocommerce-MyAccount-navigation ul li:hover a,.woocommerce-MyAccount-navigation ul li.is-active a, .links a.icon:hover .fa, .gallery-zoom .icon:hover .fa, .gallery-redirect .icon:hover .fa, .blog-posts-content .block_hover .icon:hover .fa { color:#<?php echo esc_attr(get_option('tmpmela_button_text_color')); ?>; } .pricing_wrapper .pricing_heading, .pricing_wrapper .selected .pricing_heading, .pricing_wrapper .pricing_top, .pricing_wrapper.pricing_button a#pricing-btn, .portfolio-filter-container .options li a, .links .icon, .gallery-zoom .icon, .gallery-redirect .icon, .blog-posts-content .block_hover .icon,.tags-links a,.woocommerce .addresses .title .edit, .woocommerce-page .addresses .title .edit { background-color:#<?php echo esc_attr(get_option('tmpmela_secondary_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_bodyfont_color')); ?>; } .pricing_wrapper:hover .pricing_heading, .pricing_wrapper .selected .pricing_heading, .pricing_wrapper:hover .pricing_top, .pricing_wrapper .selected .pricing_top, .pricing_wrapper:hover .pricing_button a#pricing-btn, .pricing_wrapper .selected .pricing_button a#pricing-btn, .portfolio-filter-container .options li a:active, .portfolio-filter-container .options li a.selected, .portfolio-filter-container .options li a:hover, .links a.icon:hover, .gallery-zoom .icon:hover, .gallery-redirect .icon:hover, .blog-posts-content .block_hover .icon:hover, .stick-cat .meta-inner .categories-links a, .tags-links a:hover, .woocommerce .addresses .title .edit:hover, .woocommerce-page .addresses .title .edit:hover { background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_color')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_button_text_color')); ?>; } .pricing_wrapper:hover .pricing_wrapper_inner, .pricing_wrapper:hover .pricing_button a#pricing-btn, .pricing_wrapper .selected .pricing_button a#pricing-btn, .portfolio-filter-container .options li a:active, .portfolio-filter-container .options li a.selected, .portfolio-filter-container .options li a:hover { border-color: #<?php echo esc_attr(get_option('tmpmela_product_button_bkg_color')); ?>; } .primary-sidebar .widget .widget-title::after, .entry-header::after, blockquote::after{ background-color:#<?php echo esc_attr(get_option('tmpmela_product_button_bkg_color')); ?>;} .sk-folding-cube .sk-cube::before{ background-color:#<?php echo esc_attr(get_option('tmpmela_loader_color')); ?>; } .blog-image { background-image: url("<?php echo wp_get_attachment_url(get_post_thumbnail_id(get_the_ID())); ?>"); } .footer-newsletter { background-color:#<?php echo esc_attr(get_option('tmpmela_footer_newsletter_bkg_color')) ; ?>; <?php if(get_option('tmpmela_footer_newsletter_background_upload')!=''){ ?> background-image: url("<?php echo esc_url(get_option('tmpmela_footer_newsletter_background_upload')); ?>"); background-position:<?php echo esc_attr(str_replace('+',' ',get_option('tmpmela_footer_newsletter_back_position'))); ?>; background-repeat:<?php echo esc_attr(get_option('tmpmela_footer_newsletter_back_repeat')); ?>; background-attachment:<?php echo esc_attr(get_option('tmpmela_footer_newsletterheader_back_attachment')); ?>; color:#<?php echo esc_attr(get_option('tmpmela_footer_newsletter_text_color')) ; ?>; <?php } ?> } </style> <?php } ?>
[+]
..
[-] tmpmela_control_panel.php
[edit]