Produced by Araxis Merge on 2023-11-23 04:31:23 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | /Users/coca/Documents/www/Porto v4.0.2/Theme Files/Magento 2.x/Porto Theme 4.0.6/app/code/Smartwave/Porto/view/frontend/templates/porto/css | design.phtml | 2023-06-18 04:30:47 +0000 |
| 2 | /Users/coca/Documents/www/Porto v4.0.2/Theme Files/Magento 2.x/Porto Theme 4.0.7/app/code/Smartwave/Porto/view/frontend/templates/porto/css | design.phtml | 2023-11-18 09:48:28 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 4 | 1570 |
| Changed | 2 | 10 |
| Inserted | 1 | 1 |
| Removed | 0 | 0 |
| Whitespace | Consecutive whitespace is treated as a single space |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
| Active line-pairing rules |
No regular expressions were active.
| 1 | /** | 1 | /** | |||
| 2 | * WARNING: Do not change this file. Your changes will be lost. | 2 | * WARNING: Do not change this file. Your changes will be lost. | |||
| 3 | * <?php echo date("Y-m-d H:i:s"); ?> | 3 | * <?php echo date("Y-m-d H:i:s"); ?> | |||
| 4 | */ | 4 | */ | |||
| 5 | 5 | |||||
| 6 | <?php | 6 | <?php | |||
| 7 | $d = $this->getConfig("porto_design",$this->_coreRegistry->registry('cssgen_store')); | 7 | $d = $this->getConfig("porto_design",$this->_coreRegistry->registry('cssgen_store')); | |||
| 8 | $_helper = $this->helper('Smartwave\Porto\Helper\Cssconfig'); | 8 | $_helper = $this->helper('Smartwave\Porto\Helper\Cssconfig'); | |||
| 9 | ?> | 9 | ?> | |||
| 10 | <?php | 10 | <?php | |||
| 11 | if(isset($d['font']['custom']) && $d['font']['custom']==1){ | 11 | if(isset($d['font']['custom']) && $d['font']['custom']==1){ | |||
| 12 | ?> | 12 | ?> | |||
| 13 | body { | 13 | body { | |||
| 14 | <?php | 14 | <?php | |||
| 15 | if(isset($d['font']['font_size']) && $d['font']['font_size']){ | 15 | if(isset($d['font']['font_size']) && $d['font']['font_size']){ | |||
| 16 | ?> | 16 | ?> | |||
| 17 | font-size: <?php echo $d['font']['font_size']; ?>; | 17 | font-size: <?php echo $d['font']['font_size']; ?>; | |||
| 18 | <?php | 18 | <?php | |||
| 19 | } | 19 | } | |||
| 20 | if(isset($d['font']['font_family']) && $d['font']['font_family'] == 'google'){ | 20 | if(isset($d['font']['font_family']) && $d['font']['font_family'] == 'google'){ | |||
| 21 | ?> | 21 | ?> | |||
| 22 | font-family: <?php echo $d['font']['google_font_family']; ?>; | 22 | font-family: <?php echo $d['font']['google_font_family']; ?>; | |||
| 23 | <?php | 23 | <?php | |||
| 24 | } | 24 | } | |||
| 25 | elseif (isset($d['font']['font_family']) && $d['font']['font_family'] == 'custom') { | 25 | elseif (isset($d['font']['font_family']) && $d['font']['font_family'] == 'custom') { | |||
| 26 | if($d['font']['custom_font_family']) { | 26 | if($d['font']['custom_font_family']) { | |||
| 27 | ?> | 27 | ?> | |||
| 28 | font-family: <?php echo $d['font']['custom_font_family']; ?>; | 28 | font-family: <?php echo $d['font']['custom_font_family']; ?>; | |||
| 29 | <?php | 29 | <?php | |||
| 30 | } | 30 | } | |||
| 31 | } | 31 | } | |||
| 32 | else { | 32 | else { | |||
| 33 | ?> | 33 | ?> | |||
| 34 | font-family: <?php echo $d['font']['font_family']; ?>; | 34 | font-family: <?php echo $d['font']['font_family']; ?>; | |||
| 35 | <?php | 35 | <?php | |||
| 36 | } | 36 | } | |||
| 37 | ?> | 37 | ?> | |||
| 38 | } | 38 | } | |||
| 39 | <?php | 39 | <?php | |||
| 40 | } | 40 | } | |||
| 41 | if(isset($d['general']['theme_color']) && $d['general']['theme_color']) { | 41 | if(isset($d['general']['theme_color']) && $d['general']['theme_color']) { | |||
| 42 | ?> | 42 | ?> | |||
| 43 | :root { | 43 | :root { | |||
| 44 | --theme-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 44 | --theme-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 45 | <?php if(isset($d['header']['custom']) && $d['header']['custom']==1){?> | |||||
| 45 | --border-search-color: <?php if (strlen($d['header']['header_search_bordercolor']?$d['header']['header_search_bordercolor']:'777') == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor'] ? $d['header']['header_search_bordercolor'] : '#777'; ?>; | 46 | --border-search-color: <?php if (strlen($d['header']['header_search_bordercolor']?$d['header']['header_search_bordercolor']:'777') == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor'] ? $d['header']['header_search_bordercolor'] : '#777'; ?>; | |||
| 46 | <?php if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ ?> | 47 | <?php }?> | |||
| 48 | ||||||
| 49 | <?php | |||||
| 50 | if(isset($d['colors']['custom']) && $d['colors']['custom']==1){ | |||||
| 51 | | |||||
| 47 | --button-bg-color: <?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | 52 | --button-bg-color: <?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | |||
| 48 | --button-border-color: <?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | 53 | --button-border-color: <?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | |||
| 49 | --button-text-color: <?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?>; | 54 | --button-text-color: <?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?>; | |||
| 50 | <?php }?> | 55 | <?php }?> | |||
| 51 | <?php if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ ?> | 56 | <?php if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ ?> | |||
| 52 | --button-bg-hover-color: <?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | 57 | --button-bg-hover-color: <?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | |||
| 53 | --button-border-hover-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | 58 | --button-border-hover-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | |||
| 54 | --button-text-hover-color: <?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?>; | 59 | --button-text-hover-color: <?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?>; | |||
| 55 | <?php }?> | 60 | <?php } | |||
| 61 | } | |||||
| 62 | ?> | |||||
| 56 | } | 63 | } | |||
| 57 | html .background-color-primary { | 64 | html .background-color-primary { | |||
| 58 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | 65 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | |||
| 59 | } | 66 | } | |||
| 60 | .theme-color{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 67 | .theme-color{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 61 | .theme-hover-color:hover{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 68 | .theme-hover-color:hover{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 62 | .theme-bg-color{background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 69 | .theme-bg-color{background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 63 | .theme-border-color{border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 70 | .theme-border-color{border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 64 | .theme-hover-bg-color:hover{background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 71 | .theme-hover-bg-color:hover{background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 65 | a,a:hover, .minicart-wrapper .action.showcart:before, .minicart-wrapper .action.showcart.active:before, .owl-theme .owl-controls .owl-nav [class*=owl-], .recent-posts .post-date .day, .minicart-wrapper .action.showcart:hover:before, .minicart-wrapper .action.showcart:active:before, .minicart-wrapper .action.showcart.active:before, .minicart-wrapper .action.showcart.active:hover:before, .sorter-action:hover:before, .page-main > .page-title-wrapper .page-title, .cart.table-wrapper .actions-toolbar > .action-edit:hover:before, .cart.table-wrapper .actions-toolbar > .action-delete:hover:before, .paypal-review-discount .block > .title strong, .cart-discount .block > .title strong, .authentication-wrapper button.action-auth-toggle, .abs-action-button-as-link:hover, .abs-action-remove:hover, .abs-discount-block .action.check:hover, .popup .actions-toolbar .action.cancel:hover, .paypal-button-widget .paypal-button:hover, .bundle-options-container .action.back:hover, .block.related .action.select:hover, .cart.table-wrapper .actions-toolbar > .action-delete:hover, .cart.table-wrapper .action.help.map:hover, .checkout-index-index .modal-popup .modal-footer .action-hide-popup:hover, .opc-wrapper .edit-address-link:hover, .opc-block-shipping-information .shipping-information-title .action-edit:hover, .action-auth-toggle:hover, .checkout-payment-method .payment-method-billing-address .action-cancel:hover, .checkout-payment-method .payment-method-billing-address .billing-address-details .action-edit-address:hover, .checkout-agreements-block .action-show:hover, .gift-options .actions-toolbar .action-cancel:hover, .gift-summary .action-edit:hover, .gift-summary .action-delete:hover, .gift-wrapping-title .action-remove:hover, .wishlist.split.button > .action:hover, .abs-add-fields .action.remove:hover, .paypal-review-discount .action.check:hover, .cart-discount .action.check:hover, .form-giftregistry-share .action.remove:hover, .form-giftregistry-edit .action.remove:hover, .form-add-invitations .action.remove:hover, .form-create-return .action.remove:hover, .form.send.friend .action.remove:hover, .opc-progress-bar-item._complete > span, .checkout-payment-method .payment-option-title .action-toggle, .checkout-payment-method .payment-option-title .action-toggle:after, .opc-block-shipping-information .shipping-information-title .action-edit:before, .opc-block-shipping-information .shipping-information-title .action-edit:hover:before, .block-collapsible-nav .item.current a, .block-collapsible-nav .item.current strong, .block-collapsible-nav .item a:hover, .block-collapsible-nav .item a:active, .block-collapsible-nav .item a:focus, .magento-rma-returns-returns .page-main .page-title-wrapper .page-title, .magento-rma-returns-view .page-main .page-title-wrapper .page-title, .magento-rma-guest-returns .page-main .page-title-wrapper .page-title, .account .page-main .page-title-wrapper .page-title, [class^="sales-guest-"] .page-main .page-title-wrapper .page-title, .sales-guest-view .page-main .page-title-wrapper .page-title, .magento-rma-guest-returns .page-main .page-title-wrapper .page-title, p .alternative-font, .entry-content h3, .history h4, .nav-.block-search .label:before, .block-search .label:hover:before, .fotorama .fotorama-sprite, .page-header.type5 .search-area > a, .page-header.type5 .search-area > a:hover, .page-header.type5 .minicart-wrapper .action.showcart:before, .page-header.type5 .minicart-wrapper .action.showcart.active:before, .filterproducts-tab .data.items > .item.title[aria-expanded=true] a.switch, .qty.field .qty-changer > a:hover, .post-holder .post-date .day, .widget.block-recent-posts ul li a, .post-list .post-content .post-read-more, .post-header .post-title a, .alink:visited, a:active, .alink:active, .block-category-event > div.event-desc, .block-category-event .event-ticker .dates > div > span.desc, #ln_slider_price .ui-slider-handle, .abs-action-remove, .abs-discount-block .action.check, .popup .actions-toolbar .action.cancel, .paypal-button-widget .paypal-button, .bundle-options-container .action.back, .block.related .action.select, .cart.table-wrapper .actions-toolbar > .action-delete, .cart.table-wrapper .action.help.map, .checkout-index-index .modal-popup .modal-footer .action-hide-popup, .opc-wrapper .edit-address-link, .opc-block-shipping-information .shipping-information-title .action-edit, .action-auth-toggle, .checkout-payment-method .payment-method-billing-address .action-cancel, .checkout-payment-method .payment-method-billing-address .billing-address-details .action-edit-address, .checkout-agreements-block .action-show, .gift-options .actions-toolbar .action-cancel, .gift-summary .action-edit, .gift-summary .action-delete, .gift-wrapping-title .action-remove, .wishlist.split.button > .action, .abs-add-fields .action.remove, .paypal-review-discount .action.check, .cart-discount .action.check, .form-giftregistry-share .action.remove, .form-giftregistry-edit .action.remove, .form-add-invitations .action.remove, .form-create-return .action.remove, .form.send.friend .action.remove,.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span,html .heading-primary, html .lnk-primary, html .text-color-primary,.modes-mode.active, .modes-mode:hover,.sidebar-main .porto-icon {color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 72 | a,a:hover, .minicart-wrapper .action.showcart:before, .minicart-wrapper .action.showcart.active:before, .owl-theme .owl-controls .owl-nav [class*=owl-], .recent-posts .post-date .day, .minicart-wrapper .action.showcart:hover:before, .minicart-wrapper .action.showcart:active:before, .minicart-wrapper .action.showcart.active:before, .minicart-wrapper .action.showcart.active:hover:before, .sorter-action:hover:before, .page-main > .page-title-wrapper .page-title, .cart.table-wrapper .actions-toolbar > .action-edit:hover:before, .cart.table-wrapper .actions-toolbar > .action-delete:hover:before, .paypal-review-discount .block > .title strong, .cart-discount .block > .title strong, .authentication-wrapper button.action-auth-toggle, .abs-action-button-as-link:hover, .abs-action-remove:hover, .abs-discount-block .action.check:hover, .popup .actions-toolbar .action.cancel:hover, .paypal-button-widget .paypal-button:hover, .bundle-options-container .action.back:hover, .block.related .action.select:hover, .cart.table-wrapper .actions-toolbar > .action-delete:hover, .cart.table-wrapper .action.help.map:hover, .checkout-index-index .modal-popup .modal-footer .action-hide-popup:hover, .opc-wrapper .edit-address-link:hover, .opc-block-shipping-information .shipping-information-title .action-edit:hover, .action-auth-toggle:hover, .checkout-payment-method .payment-method-billing-address .action-cancel:hover, .checkout-payment-method .payment-method-billing-address .billing-address-details .action-edit-address:hover, .checkout-agreements-block .action-show:hover, .gift-options .actions-toolbar .action-cancel:hover, .gift-summary .action-edit:hover, .gift-summary .action-delete:hover, .gift-wrapping-title .action-remove:hover, .wishlist.split.button > .action:hover, .abs-add-fields .action.remove:hover, .paypal-review-discount .action.check:hover, .cart-discount .action.check:hover, .form-giftregistry-share .action.remove:hover, .form-giftregistry-edit .action.remove:hover, .form-add-invitations .action.remove:hover, .form-create-return .action.remove:hover, .form.send.friend .action.remove:hover, .opc-progress-bar-item._complete > span, .checkout-payment-method .payment-option-title .action-toggle, .checkout-payment-method .payment-option-title .action-toggle:after, .opc-block-shipping-information .shipping-information-title .action-edit:before, .opc-block-shipping-information .shipping-information-title .action-edit:hover:before, .block-collapsible-nav .item.current a, .block-collapsible-nav .item.current strong, .block-collapsible-nav .item a:hover, .block-collapsible-nav .item a:active, .block-collapsible-nav .item a:focus, .magento-rma-returns-returns .page-main .page-title-wrapper .page-title, .magento-rma-returns-view .page-main .page-title-wrapper .page-title, .magento-rma-guest-returns .page-main .page-title-wrapper .page-title, .account .page-main .page-title-wrapper .page-title, [class^="sales-guest-"] .page-main .page-title-wrapper .page-title, .sales-guest-view .page-main .page-title-wrapper .page-title, .magento-rma-guest-returns .page-main .page-title-wrapper .page-title, p .alternative-font, .entry-content h3, .history h4, .nav-.block-search .label:before, .block-search .label:hover:before, .fotorama .fotorama-sprite, .page-header.type5 .search-area > a, .page-header.type5 .search-area > a:hover, .page-header.type5 .minicart-wrapper .action.showcart:before, .page-header.type5 .minicart-wrapper .action.showcart.active:before, .filterproducts-tab .data.items > .item.title[aria-expanded=true] a.switch, .qty.field .qty-changer > a:hover, .post-holder .post-date .day, .widget.block-recent-posts ul li a, .post-list .post-content .post-read-more, .post-header .post-title a, .alink:visited, a:active, .alink:active, .block-category-event > div.event-desc, .block-category-event .event-ticker .dates > div > span.desc, #ln_slider_price .ui-slider-handle, .abs-action-remove, .abs-discount-block .action.check, .popup .actions-toolbar .action.cancel, .paypal-button-widget .paypal-button, .bundle-options-container .action.back, .block.related .action.select, .cart.table-wrapper .actions-toolbar > .action-delete, .cart.table-wrapper .action.help.map, .checkout-index-index .modal-popup .modal-footer .action-hide-popup, .opc-wrapper .edit-address-link, .opc-block-shipping-information .shipping-information-title .action-edit, .action-auth-toggle, .checkout-payment-method .payment-method-billing-address .action-cancel, .checkout-payment-method .payment-method-billing-address .billing-address-details .action-edit-address, .checkout-agreements-block .action-show, .gift-options .actions-toolbar .action-cancel, .gift-summary .action-edit, .gift-summary .action-delete, .gift-wrapping-title .action-remove, .wishlist.split.button > .action, .abs-add-fields .action.remove, .paypal-review-discount .action.check, .cart-discount .action.check, .form-giftregistry-share .action.remove, .form-giftregistry-edit .action.remove, .form-add-invitations .action.remove, .form-create-return .action.remove, .form.send.friend .action.remove,.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span,html .heading-primary, html .lnk-primary, html .text-color-primary,.modes-mode.active, .modes-mode:hover,.sidebar-main .porto-icon {color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 66 | html .text-color-primary,html .text-primary,.main-toggle-menu .menu-title.closed:not(:hover) {color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 73 | html .text-color-primary,html .text-primary,.main-toggle-menu .menu-title.closed:not(:hover) {color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 67 | .action.primary, .action.primary:hover, .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span, .recent-posts .post-date .month, .footer-ribbon, button:hover,.action-primary:hover, .action.primary:focus, .action.primary:active, .btn-primary, .contact-index-index .page-main .contact-info [class^="porto-icon-"], .contact-index-index .page-main .contact-info [class*=" porto-icon-"], .btn-default, .cms-index-index blockquote.testimonial, .btn-default:hover, .products-grid .product-item-info:hover .product-item-details .product-item-actions .tocart, .products-grid.products.grid.flex-grid .product-item-details .product-item-actions .tocart, .post-holder .post-date .month, .page-header.type8 .header.content,.page-header.type8.header-newskin .header.content, .iwd-summary-cart, #ln_slider_price .ui-slider-handle, .filter-toggle.active,.products-grid .product-item .product-item-info .weltpixel-quickview.weltpixel_quickview_button_v2, .products-upsell .owl-middle-narrow.owl-theme .owl-controls .owl-dots .owl-dot.active span:before,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type4 .product-item-actions .towishlist:hover, .product-item-info.type4 .product-item-actions .tocompare:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type7 .product-item-inner .product-item-actions>.action:hover,.product-item-info.type7 .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type9 .product-item-inner .product-item-actions>.actions-primary .tocart:hover, .product-item-info.type9 .product-item-inner .product-item-actions>.action:hover,.sw-dailydeal,.catalog-product-view .sw-dailydeal .number-wrapper,.swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected,.sidebar-main .product-banner .sale-text:before, .sidebar-main .product-banner .sale-text:after,.product-item-info.type0:hover .product-item-details .product-item-actions .tocart,.page-header.type17 .navigation:not(.side-megamenu) .level0 .level-top::before | 74 | .action.primary, .action.primary:hover, .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span, .recent-posts .post-date .month, .footer-ribbon, button:hover,.action-primary:hover, .action.primary:focus, .action.primary:active, .btn-primary, .contact-index-index .page-main .contact-info [class^="porto-icon-"], .contact-index-index .page-main .contact-info [class*=" porto-icon-"], .btn-default, .cms-index-index blockquote.testimonial, .btn-default:hover, .products-grid .product-item-info:hover .product-item-details .product-item-actions .tocart, .products-grid.products.grid.flex-grid .product-item-details .product-item-actions .tocart, .post-holder .post-date .month, .page-header.type8 .header.content,.page-header.type8.header-newskin .header.content, .iwd-summary-cart, #ln_slider_price .ui-slider-handle, .filter-toggle.active,.products-grid .product-item .product-item-info .weltpixel-quickview.weltpixel_quickview_button_v2, .products-upsell .owl-middle-narrow.owl-theme .owl-controls .owl-dots .owl-dot.active span:before,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type4 .product-item-actions .towishlist:hover, .product-item-info.type4 .product-item-actions .tocompare:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type7 .product-item-inner .product-item-actions>.action:hover,.product-item-info.type7 .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type9 .product-item-inner .product-item-actions>.actions-primary .tocart:hover, .product-item-info.type9 .product-item-inner .product-item-actions>.action:hover,.sw-dailydeal,.catalog-product-view .sw-dailydeal .number-wrapper,.swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected,.sidebar-main .product-banner .sale-text:before, .sidebar-main .product-banner .sale-text:after,.product-item-info.type0:hover .product-item-details .product-item-actions .tocart,.page-header.type17 .navigation:not(.side-megamenu) .level0 .level-top::before | |||
| 68 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 75 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 69 | .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected | 76 | .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected | |||
| 70 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 77 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 71 | .action.primary, .action.primary:hover, .pages strong.page, .pages .action:hover, .pages a.page:hover, button:hover,.action-primary:hover, .action.primary:focus, .action.primary:active, .products-grid .product-item-info:hover .product-item-details .product-item-actions .tocart, .products-grid.products.grid.flex-grid .product-item-details .product-item-actions .tocart, .filter-toggle.active,i.ajax-loader, .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected, .swatch-option.image:not(.disabled):hover, .swatch-option.color:not(.disabled):hover, .swatch-option:not(.disabled):hover,.products-grid .swatch-option.color:hover::after,.products-grid .swatch-option.image:hover::after,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type4 .product-item-actions .towishlist:hover, .product-item-info.type4 .product-item-actions .tocompare:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type0:hover .product-item-details .product-item-actions .tocart,.page-header.type18 .navigation:not(.side-megamenu) .level0 > .submenu | 78 | .action.primary, .action.primary:hover, .pages strong.page, .pages .action:hover, .pages a.page:hover, button:hover,.action-primary:hover, .action.primary:focus, .action.primary:active, .products-grid .product-item-info:hover .product-item-details .product-item-actions .tocart, .products-grid.products.grid.flex-grid .product-item-details .product-item-actions .tocart, .filter-toggle.active,i.ajax-loader, .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected, .swatch-option.image:not(.disabled):hover, .swatch-option.color:not(.disabled):hover, .swatch-option:not(.disabled):hover,.products-grid .swatch-option.color:hover::after,.products-grid .swatch-option.image:hover::after,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type3 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type4 .product-item-actions .towishlist:hover, .product-item-info.type4 .product-item-actions .tocompare:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type5 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.actions-primary .tocart:hover,.product-item-info.type6 .product-item-photo .product-item-inner .product-item-actions>.action.tocompare:hover,.product-item-info.type0:hover .product-item-details .product-item-actions .tocart,.page-header.type18 .navigation:not(.side-megamenu) .level0 > .submenu | |||
| 72 | {border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 79 | {border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 73 | .page-header, .authentication-dropdown, .login-container, .form.password.reset, .form.send.confirmation, .form.password.forget, .form.create.account, .form.form-edit-account, .form-address-edit, .form-newsletter-manage, .featured-box .box-content, .history .featured-box .box-content, .form.search.advanced, .homepage-grid-banner .ribbon:before, .testimonial .testimonial-arrow-down, #newsletter_popup, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary, .block-header-customer-login, .mfp-preloader, .ln_overlay .loader | 80 | .page-header, .authentication-dropdown, .login-container, .form.password.reset, .form.send.confirmation, .form.password.forget, .form.create.account, .form.form-edit-account, .form-address-edit, .form-newsletter-manage, .featured-box .box-content, .history .featured-box .box-content, .form.search.advanced, .homepage-grid-banner .ribbon:before, .testimonial .testimonial-arrow-down, #newsletter_popup, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary, .block-header-customer-login, .mfp-preloader, .ln_overlay .loader | |||
| 74 | {border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 81 | {border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 75 | .minicart-wrapper .block-minicart:before, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary:before, .block-header-customer-login:before | 82 | .minicart-wrapper .block-minicart:before, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary:before, .block-header-customer-login:before | |||
| 76 | {border-bottom-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 83 | {border-bottom-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 77 | @media (max-width: 991px) { | 84 | @media (max-width: 991px) { | |||
| 78 | .navigation a { | 85 | .navigation a { | |||
| 79 | color: #777 !important; | 86 | color: #777 !important; | |||
| 80 | } | 87 | } | |||
| 81 | .navigation a:hover, .nav-sections .header.links a:hover { | 88 | .navigation a:hover, .nav-sections .header.links a:hover { | |||
| 82 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | 89 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | |||
| 83 | } | 90 | } | |||
| 84 | header.page-header .nav-sections-item-title.active > a, header.page-header .nav-sections-item-title.active > a:hover, header.page-header .nav-sections-item-title.active > a:focus{ | 91 | header.page-header .nav-sections-item-title.active > a, header.page-header .nav-sections-item-title.active > a:hover, header.page-header .nav-sections-item-title.active > a:focus{ | |||
| 85 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 92 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 86 | } | 93 | } | |||
| 87 | header.page-header .nav-sections-item-title, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:focus { | 94 | header.page-header .nav-sections-item-title, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:hover, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:hover, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-top-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-top-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-left-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-left-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-right-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-right-block a.btn-default:focus, .sw-megamenu.navigation li.level0.fullwidth .submenu .menu-bottom-block a.btn-default:focus, .sw-megamenu.navigation li.level0.staticwidth .submenu .menu-bottom-block a.btn-default:focus { | |||
| 88 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 95 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 89 | } | 96 | } | |||
| 90 | } | 97 | } | |||
| 91 | @media (min-width: 992px) { | 98 | @media (min-width: 992px) { | |||
| 92 | .page-header .navigation li.level0 { | 99 | .page-header .navigation li.level0 { | |||
| 93 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 100 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 94 | } | 101 | } | |||
| 95 | .page-header.type24 .navigation li.level0 > a:before { | 102 | .page-header.type24 .navigation li.level0 > a:before { | |||
| 96 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 103 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 97 | } | 104 | } | |||
| 98 | .navigation .level0 .submenu { | 105 | .navigation .level0 .submenu { | |||
| 99 | border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 106 | border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 100 | } | 107 | } | |||
| 101 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a,.sw-megamenu.navigation.side-megamenu li.level0.active > a { | 108 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a,.sw-megamenu.navigation.side-megamenu li.level0.active > a { | |||
| 102 | border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 109 | border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 103 | } | 110 | } | |||
| 104 | #main-toggle-menu .menu-title:hover, #main-toggle-menu .menu-title:not(.closed) { | 111 | #main-toggle-menu .menu-title:hover, #main-toggle-menu .menu-title:not(.closed) { | |||
| 105 | background: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 112 | background: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 106 | border-right-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 113 | border-right-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 107 | } | 114 | } | |||
| 108 | } | 115 | } | |||
| 109 | <?php | 116 | <?php | |||
| 110 | } | 117 | } | |||
| 111 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | 118 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | |||
| 112 | ?> | 119 | ?> | |||
| 113 | .page-main { | 120 | .page-main { | |||
| 114 | <?php | 121 | <?php | |||
| 115 | if(isset($d['main']['main_bgcolor']) && $d['main']['main_bgcolor']) { | 122 | if(isset($d['main']['main_bgcolor']) && $d['main']['main_bgcolor']) { | |||
| 116 | ?> | 123 | ?> | |||
| 117 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | 124 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | |||
| 118 | <?php | 125 | <?php | |||
| 119 | } | 126 | } | |||
| 120 | if(isset($d['main']['main_bg_image']) && $d['main']['main_bg_image']){ | 127 | if(isset($d['main']['main_bg_image']) && $d['main']['main_bg_image']){ | |||
| 121 | ?> | 128 | ?> | |||
| 122 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/main_bg/".$d['main']['main_bg_image']; ?>); | 129 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/main_bg/".$d['main']['main_bg_image']; ?>); | |||
| 123 | <?php | 130 | <?php | |||
| 124 | } | 131 | } | |||
| 125 | if(isset($d['main']['main_custom_style']) && $d['main']['main_custom_style']){ | 132 | if(isset($d['main']['main_custom_style']) && $d['main']['main_custom_style']){ | |||
| 126 | ?> | 133 | ?> | |||
| 127 | <?php echo $d['main']['main_custom_style']; ?>; | 134 | <?php echo $d['main']['main_custom_style']; ?>; | |||
| 128 | <?php | 135 | <?php | |||
| 129 | } | 136 | } | |||
| 130 | ?> | 137 | ?> | |||
| 131 | } | 138 | } | |||
| 132 | 139 | |||||
| 133 | <?php | 140 | <?php | |||
| 134 | } | 141 | } | |||
| 135 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | 142 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | |||
| 136 | ?> | 143 | ?> | |||
| 137 | .page-wrapper { | 144 | .page-wrapper { | |||
| 138 | <?php | 145 | <?php | |||
| 139 | if(isset($d['page']['page_bgcolor']) && $d['page']['page_bgcolor']) { | 146 | if(isset($d['page']['page_bgcolor']) && $d['page']['page_bgcolor']) { | |||
| 140 | ?> | 147 | ?> | |||
| 141 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | 148 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | |||
| 142 | <?php | 149 | <?php | |||
| 143 | } | 150 | } | |||
| 144 | if(isset($d['page']['page_bg_image']) && $d['page']['page_bg_image']){ | 151 | if(isset($d['page']['page_bg_image']) && $d['page']['page_bg_image']){ | |||
| 145 | ?> | 152 | ?> | |||
| 146 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/page_bg/".$d['page']['page_bg_image']; ?>); | 153 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/page_bg/".$d['page']['page_bg_image']; ?>); | |||
| 147 | <?php | 154 | <?php | |||
| 148 | } | 155 | } | |||
| 149 | if(isset($d['page']['page_custom_style']) && $d['page']['page_custom_style']){ | 156 | if(isset($d['page']['page_custom_style']) && $d['page']['page_custom_style']){ | |||
| 150 | ?> | 157 | ?> | |||
| 151 | <?php echo $d['page']['page_custom_style']; ?>; | 158 | <?php echo $d['page']['page_custom_style']; ?>; | |||
| 152 | <?php | 159 | <?php | |||
| 153 | } | 160 | } | |||
| 154 | ?> | 161 | ?> | |||
| 155 | } | 162 | } | |||
| 156 | <?php | 163 | <?php | |||
| 157 | } | 164 | } | |||
| 158 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | 165 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | |||
| 159 | if($d['page']['page_bgcolor']) { | 166 | if($d['page']['page_bgcolor']) { | |||
| 160 | ?> | 167 | ?> | |||
| 161 | .filterproduct-title .content { | 168 | .filterproduct-title .content { | |||
| 162 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | 169 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | |||
| 163 | } | 170 | } | |||
| 164 | <?php | 171 | <?php | |||
| 165 | } | 172 | } | |||
| 166 | } | 173 | } | |||
| 167 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | 174 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | |||
| 168 | if($d['main']['main_bgcolor']) { | 175 | if($d['main']['main_bgcolor']) { | |||
| 169 | ?> | 176 | ?> | |||
| 170 | .page-main .filterproduct-title .content { | 177 | .page-main .filterproduct-title .content { | |||
| 171 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | 178 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | |||
| 172 | } | 179 | } | |||
| 173 | <?php | 180 | <?php | |||
| 174 | } | 181 | } | |||
| 175 | } | 182 | } | |||
| 176 | if(isset($d['colors']['custom']) && $d['colors']['custom']==1){ | 183 | if(isset($d['colors']['custom']) && $d['colors']['custom']==1){ | |||
| 177 | if(isset($d['colors']['text_color']) && $d['colors']['text_color']){ | 184 | if(isset($d['colors']['text_color']) && $d['colors']['text_color']){ | |||
| 178 | ?> | 185 | ?> | |||
| 179 | html,body{color:<?php if (strlen($d['colors']['text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['text_color']; ?>} | 186 | html,body{color:<?php if (strlen($d['colors']['text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['text_color']; ?>} | |||
| 180 | <?php | 187 | <?php | |||
| 181 | } | 188 | } | |||
| 182 | if(isset($d['colors']['link_color']) && $d['colors']['link_color']){ | 189 | if(isset($d['colors']['link_color']) && $d['colors']['link_color']){ | |||
| 183 | ?> | 190 | ?> | |||
| 184 | a, a:focus {color:<?php if (strlen($d['colors']['link_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_color']; ?>} | 191 | a, a:focus {color:<?php if (strlen($d['colors']['link_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_color']; ?>} | |||
| 185 | <?php | 192 | <?php | |||
| 186 | } | 193 | } | |||
| 187 | if(isset($d['colors']['link_hover_color']) && $d['colors']['link_hover_color']){ | 194 | if(isset($d['colors']['link_hover_color']) && $d['colors']['link_hover_color']){ | |||
| 188 | ?> | 195 | ?> | |||
| 189 | a:hover{color:<?php if (strlen($d['colors']['link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_hover_color']; ?>} | 196 | a:hover{color:<?php if (strlen($d['colors']['link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_hover_color']; ?>} | |||
| 190 | <?php | 197 | <?php | |||
| 191 | } | 198 | } | |||
| 192 | ?> | 199 | ?> | |||
| 193 | button.action.primary{ | 200 | button.action.primary{ | |||
| 194 | <?php | 201 | <?php | |||
| 195 | if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ | 202 | if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ | |||
| 196 | ?> | 203 | ?> | |||
| 197 | background-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | 204 | background-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | |||
| 198 | border-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | 205 | border-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | |||
| 199 | <?php | 206 | <?php | |||
| 200 | } | 207 | } | |||
| 201 | if(isset($d['colors']['button_text_color']) && $d['colors']['button_text_color']){ | 208 | if(isset($d['colors']['button_text_color']) && $d['colors']['button_text_color']){ | |||
| 202 | ?> | 209 | ?> | |||
| 203 | color:<?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?> | 210 | color:<?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?> | |||
| 204 | <?php | 211 | <?php | |||
| 205 | } | 212 | } | |||
| 206 | ?> | 213 | ?> | |||
| 207 | } | 214 | } | |||
| 208 | button.action.primary:hover{ | 215 | button.action.primary:hover{ | |||
| 209 | <?php | 216 | <?php | |||
| 210 | if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ | 217 | if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ | |||
| 211 | ?> | 218 | ?> | |||
| 212 | background-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | 219 | background-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | |||
| 213 | border-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | 220 | border-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | |||
| 214 | <?php | 221 | <?php | |||
| 215 | } | 222 | } | |||
| 216 | if(isset($d['colors']['button_hover_text_color']) && $d['colors']['button_hover_text_color']){ | 223 | if(isset($d['colors']['button_hover_text_color']) && $d['colors']['button_hover_text_color']){ | |||
| 217 | ?> | 224 | ?> | |||
| 218 | color:<?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?> | 225 | color:<?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?> | |||
| 219 | <?php | 226 | <?php | |||
| 220 | } | 227 | } | |||
| 221 | ?> | 228 | ?> | |||
| 222 | } | 229 | } | |||
| 223 | <?php | 230 | <?php | |||
| 224 | if(isset($d['colors']['breadcrumbs_bg_color']) && $d['colors']['breadcrumbs_bg_color']){ | 231 | if(isset($d['colors']['breadcrumbs_bg_color']) && $d['colors']['breadcrumbs_bg_color']){ | |||
| 225 | ?> | 232 | ?> | |||
| 226 | .page-wrapper > .breadcrumbs{background-color:<?php if (strlen($d['colors']['breadcrumbs_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_bg_color']; ?>} | 233 | .page-wrapper > .breadcrumbs{background-color:<?php if (strlen($d['colors']['breadcrumbs_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_bg_color']; ?>} | |||
| 227 | <?php | 234 | <?php | |||
| 228 | } | 235 | } | |||
| 229 | if(isset($d['colors']['breadcrumbs_color']) && $d['colors']['breadcrumbs_color']){ | 236 | if(isset($d['colors']['breadcrumbs_color']) && $d['colors']['breadcrumbs_color']){ | |||
| 230 | ?> | 237 | ?> | |||
| 231 | .page-wrapper > .breadcrumbs{color:<?php if (strlen($d['colors']['breadcrumbs_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_color']; ?>} | 238 | .page-wrapper > .breadcrumbs{color:<?php if (strlen($d['colors']['breadcrumbs_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_color']; ?>} | |||
| 232 | <?php | 239 | <?php | |||
| 233 | } | 240 | } | |||
| 234 | if(isset($d['colors']['breadcrumbs_links_color']) && $d['colors']['breadcrumbs_links_color']){ | 241 | if(isset($d['colors']['breadcrumbs_links_color']) && $d['colors']['breadcrumbs_links_color']){ | |||
| 235 | ?> | 242 | ?> | |||
| 236 | .page-wrapper > .breadcrumbs a, .page-wrapper > .breadcrumbs a:focus{color:<?php if (strlen($d['colors']['breadcrumbs_links_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_links_color']; ?>} | 243 | .page-wrapper > .breadcrumbs a, .page-wrapper > .breadcrumbs a:focus{color:<?php if (strlen($d['colors']['breadcrumbs_links_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_links_color']; ?>} | |||
| 237 | <?php | 244 | <?php | |||
| 238 | } | 245 | } | |||
| 239 | if(isset($d['colors']['breadcrumbs_links_hover_color']) && $d['colors']['breadcrumbs_links_hover_color']){ | 246 | if(isset($d['colors']['breadcrumbs_links_hover_color']) && $d['colors']['breadcrumbs_links_hover_color']){ | |||
| 240 | ?> | 247 | ?> | |||
| 241 | .page-wrapper > .breadcrumbs a:hover{color:<?php if (strlen($d['colors']['breadcrumbs_links_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_links_hover_color']; ?>} | 248 | .page-wrapper > .breadcrumbs a:hover{color:<?php if (strlen($d['colors']['breadcrumbs_links_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_links_hover_color']; ?>} | |||
| 242 | <?php | 249 | <?php | |||
| 243 | } | 250 | } | |||
| 244 | if(isset($d['colors']['sale_bg_color']) && $d['colors']['sale_bg_color']){ | 251 | if(isset($d['colors']['sale_bg_color']) && $d['colors']['sale_bg_color']){ | |||
| 245 | ?> | 252 | ?> | |||
| 246 | .product-labels .product-label.sale-label{background-color:<?php if (strlen($d['colors']['sale_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['sale_bg_color']; ?>} | 253 | .product-labels .product-label.sale-label{background-color:<?php if (strlen($d['colors']['sale_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['sale_bg_color']; ?>} | |||
| 247 | <?php | 254 | <?php | |||
| 248 | } | 255 | } | |||
| 249 | if(isset($d['colors']['sale_font_color']) && $d['colors']['sale_font_color']){ | 256 | if(isset($d['colors']['sale_font_color']) && $d['colors']['sale_font_color']){ | |||
| 250 | ?> | 257 | ?> | |||
| 251 | .product-labels .product-label.sale-label{color:<?php if (strlen($d['colors']['sale_font_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['sale_font_color']; ?>} | 258 | .product-labels .product-label.sale-label{color:<?php if (strlen($d['colors']['sale_font_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['sale_font_color']; ?>} | |||
| 252 | <?php | 259 | <?php | |||
| 253 | } | 260 | } | |||
| 254 | if(isset($d['colors']['new_bg_color']) && $d['colors']['new_bg_color']){ | 261 | if(isset($d['colors']['new_bg_color']) && $d['colors']['new_bg_color']){ | |||
| 255 | ?> | 262 | ?> | |||
| 256 | .product-labels .product-label.new-label{background-color:<?php if (strlen($d['colors']['new_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['new_bg_color']; ?>} | 263 | .product-labels .product-label.new-label{background-color:<?php if (strlen($d['colors']['new_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['new_bg_color']; ?>} | |||
| 257 | <?php | 264 | <?php | |||
| 258 | } | 265 | } | |||
| 259 | if(isset($d['colors']['new_font_color']) && $d['colors']['new_font_color']){ | 266 | if(isset($d['colors']['new_font_color']) && $d['colors']['new_font_color']){ | |||
| 260 | ?> | 267 | ?> | |||
| 261 | .product-labels .product-label.new-label{color:<?php if (strlen($d['colors']['new_font_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['new_font_color']; ?>} | 268 | .product-labels .product-label.new-label{color:<?php if (strlen($d['colors']['new_font_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['new_font_color']; ?>} | |||
| 262 | <?php | 269 | <?php | |||
| 263 | } | 270 | } | |||
| 264 | if(isset($d['colors']['price_slider_bg_color']) && $d['colors']['price_slider_bg_color']){ | 271 | if(isset($d['colors']['price_slider_bg_color']) && $d['colors']['price_slider_bg_color']){ | |||
| 265 | ?> | 272 | ?> | |||
| 266 | #ln_slider_price.ui-slider-horizontal{background-color:<?php if (strlen($d['colors']['price_slider_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['price_slider_bg_color']; ?>} | 273 | #ln_slider_price.ui-slider-horizontal{background-color:<?php if (strlen($d['colors']['price_slider_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['price_slider_bg_color']; ?>} | |||
| 267 | <?php | 274 | <?php | |||
| 268 | } | 275 | } | |||
| 269 | if(isset($d['colors']['price_slider_handle_color']) && $d['colors']['price_slider_handle_color']){ | 276 | if(isset($d['colors']['price_slider_handle_color']) && $d['colors']['price_slider_handle_color']){ | |||
| 270 | ?> | 277 | ?> | |||
| 271 | #ln_slider_price .ui-slider-handle{background-color:<?php if (strlen($d['colors']['price_slider_handle_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['price_slider_handle_color']; ?>} | 278 | #ln_slider_price .ui-slider-handle{background-color:<?php if (strlen($d['colors']['price_slider_handle_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['price_slider_handle_color']; ?>} | |||
| 272 | <?php | 279 | <?php | |||
| 273 | } | 280 | } | |||
| 274 | } | 281 | } | |||
| 275 | if(isset($d['header']['custom']) && $d['header']['custom']==1){ | 282 | if(isset($d['header']['custom']) && $d['header']['custom']==1){ | |||
| 276 | if(isset($d['header']['header_bgcolor']) && $d['header']['header_bgcolor']){ | 283 | if(isset($d['header']['header_bgcolor']) && $d['header']['header_bgcolor']){ | |||
| 277 | ?> | 284 | ?> | |||
| 278 | .page-header.type1, .page-header.type23, .page-header,header.page-header.sticky-header .header-main { | 285 | .page-header.type1, .page-header.type23, .page-header,header.page-header.sticky-header .header-main { | |||
| 279 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | 286 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | |||
| 280 | } | 287 | } | |||
| 281 | @media (max-width: 767px){ | 288 | @media (max-width: 767px){ | |||
| 282 | header.page-header.sticky-header .header-main { | 289 | header.page-header.sticky-header .header-main { | |||
| 283 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | 290 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | |||
| 284 | } | 291 | } | |||
| 285 | } | 292 | } | |||
| 286 | <?php | 293 | <?php | |||
| 287 | } | 294 | } | |||
| 288 | if(isset($d['header']['header_bg_image']) && $d['header']['header_bg_image']){ | 295 | if(isset($d['header']['header_bg_image']) && $d['header']['header_bg_image']){ | |||
| 289 | ?> | 296 | ?> | |||
| 290 | .page-header.type1,.page-header.type23,.page-header:not(.type9), .page-header.type9 .header-main { | 297 | .page-header.type1,.page-header.type23,.page-header:not(.type9), .page-header.type9 .header-main { | |||
| 291 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/header_bg/".$d['header']['header_bg_image']; ?>); | 298 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/header_bg/".$d['header']['header_bg_image']; ?>); | |||
| 292 | background-repeat: repeat; | 299 | background-repeat: repeat; | |||
| 293 | } | 300 | } | |||
| 294 | <?php | 301 | <?php | |||
| 295 | } | 302 | } | |||
| 296 | if(isset($d['header']['header_bordercolor']) && $d['header']['header_bordercolor']){ | 303 | if(isset($d['header']['header_bordercolor']) && $d['header']['header_bordercolor']){ | |||
| 297 | ?> | 304 | ?> | |||
| 298 | .page-header { | 305 | .page-header { | |||
| 299 | border-top-color: <?php if (strlen($d['header']['header_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bordercolor']; ?>; | 306 | border-top-color: <?php if (strlen($d['header']['header_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bordercolor']; ?>; | |||
| 300 | } | 307 | } | |||
| 301 | <?php | 308 | <?php | |||
| 302 | } | 309 | } | |||
| 303 | if(isset($d['header']['header_textcolor']) && $d['header']['header_textcolor']){ | 310 | if(isset($d['header']['header_textcolor']) && $d['header']['header_textcolor']){ | |||
| 304 | ?> | 311 | ?> | |||
| 305 | .page-header .header-main { | 312 | .page-header .header-main { | |||
| 306 | color: <?php if (strlen($d['header']['header_textcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_textcolor']; ?>; | 313 | color: <?php if (strlen($d['header']['header_textcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_textcolor']; ?>; | |||
| 307 | } | 314 | } | |||
| 308 | <?php | 315 | <?php | |||
| 309 | } | 316 | } | |||
| 310 | if(isset($d['header']['header_linkcolor']) && $d['header']['header_linkcolor']){ | 317 | if(isset($d['header']['header_linkcolor']) && $d['header']['header_linkcolor']){ | |||
| 311 | ?> | 318 | ?> | |||
| 312 | .page-header .header-main a, .page-header.type5 .search-area a.search-toggle-icon{ | 319 | .page-header .header-main a, .page-header.type5 .search-area a.search-toggle-icon{ | |||
| 313 | color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>; | 320 | color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>; | |||
| 314 | } | 321 | } | |||
| 315 | .cart-design-2 .action.showcart .minicart-icon {border-color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>;} | 322 | .cart-design-2 .action.showcart .minicart-icon {border-color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>;} | |||
| 316 | <?php | 323 | <?php | |||
| 317 | } | 324 | } | |||
| 318 | if(isset($d['header']['header_top_links_bgcolor']) && $d['header']['header_top_links_bgcolor']){ | 325 | if(isset($d['header']['header_top_links_bgcolor']) && $d['header']['header_top_links_bgcolor']){ | |||
| 319 | ?> | 326 | ?> | |||
| 320 | .page-header .panel.wrapper,.main-panel-top { | 327 | .page-header .panel.wrapper,.main-panel-top { | |||
| 321 | background-color: <?php if (strlen($d['header']['header_top_links_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_bgcolor']; ?>; | 328 | background-color: <?php if (strlen($d['header']['header_top_links_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_bgcolor']; ?>; | |||
| 322 | } | 329 | } | |||
| 323 | <?php | 330 | <?php | |||
| 324 | } | 331 | } | |||
| 325 | if(isset($d['header']['header_top_links_color']) && $d['header']['header_top_links_color']){ | 332 | if(isset($d['header']['header_top_links_color']) && $d['header']['header_top_links_color']){ | |||
| 326 | ?> | 333 | ?> | |||
| 327 | .page-header .panel.wrapper, .page-header.type23 .panel.header a, .page-header.type23 .panel.header a:hover, .page-header.type23 > .panel.wrapper, .page-header.type23 .header.panel .switcher,.page-header.type24 .top-links-icon a, .page-header.type24 .top-links-icon, .page-header.type24 .panel.header .switcher { | 334 | .page-header .panel.wrapper, .page-header.type23 .panel.header a, .page-header.type23 .panel.header a:hover, .page-header.type23 > .panel.wrapper, .page-header.type23 .header.panel .switcher,.page-header.type24 .top-links-icon a, .page-header.type24 .top-links-icon, .page-header.type24 .panel.header .switcher { | |||
| 328 | color: <?php if (strlen($d['header']['header_top_links_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_color']; ?>; | 335 | color: <?php if (strlen($d['header']['header_top_links_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_color']; ?>; | |||
| 329 | } | 336 | } | |||
| 330 | <?php | 337 | <?php | |||
| 331 | } | 338 | } | |||
| 332 | if(isset($d['header']['header_menu_bgcolor']) && $d['header']['header_menu_bgcolor']){ | 339 | if(isset($d['header']['header_menu_bgcolor']) && $d['header']['header_menu_bgcolor']){ | |||
| 333 | ?> | 340 | ?> | |||
| 334 | @media (min-width: 992px){ | 341 | @media (min-width: 992px){ | |||
| 335 | .page-header.type1 .nav-sections,.page-header.type2 .nav-sections, .page-header .navigation > ul, .page-header.type16.sticky-header .navigation:not(.side-megamenu) > ul, .page-header.type18 .main-menu-wrap{ | 342 | .page-header.type1 .nav-sections,.page-header.type2 .nav-sections, .page-header .navigation > ul, .page-header.type16.sticky-header .navigation:not(.side-megamenu) > ul, .page-header.type18 .main-menu-wrap{ | |||
| 336 | background-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>; | 343 | background-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>; | |||
| 337 | } | 344 | } | |||
| 338 | .page-header.type16 .navigation:not(.side-megamenu) > ul {border-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>;} | 345 | .page-header.type16 .navigation:not(.side-megamenu) > ul {border-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>;} | |||
| 339 | } | 346 | } | |||
| 340 | <?php | 347 | <?php | |||
| 341 | } | 348 | } | |||
| 342 | if(isset($d['header']['header_menu_color']) && $d['header']['header_menu_color']){ | 349 | if(isset($d['header']['header_menu_color']) && $d['header']['header_menu_color']){ | |||
| 343 | ?> | 350 | ?> | |||
| 344 | @media (min-width: 992px){ | 351 | @media (min-width: 992px){ | |||
| 345 | .page-header .navigation li.level0 { | 352 | .page-header .navigation li.level0 { | |||
| 346 | color: <?php if (strlen($d['header']['header_menu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_color']; ?>; | 353 | color: <?php if (strlen($d['header']['header_menu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_color']; ?>; | |||
| 347 | } | 354 | } | |||
| 348 | } | 355 | } | |||
| 349 | <?php | 356 | <?php | |||
| 350 | } | 357 | } | |||
| 351 | if(isset($d['header']['header_sidemenu_color']) && $d['header']['header_sidemenu_color']){ | 358 | if(isset($d['header']['header_sidemenu_color']) && $d['header']['header_sidemenu_color']){ | |||
| 352 | ?> | 359 | ?> | |||
| 353 | @media (min-width: 992px){ | 360 | @media (min-width: 992px){ | |||
| 354 | .sw-megamenu.navigation.side-megamenu li.level0 {color: <?php if (strlen($d['header']['header_sidemenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_color']; ?>;} | 361 | .sw-megamenu.navigation.side-megamenu li.level0 {color: <?php if (strlen($d['header']['header_sidemenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_color']; ?>;} | |||
| 355 | } | 362 | } | |||
| 356 | <?php | 363 | <?php | |||
| 357 | } | 364 | } | |||
| 358 | if(isset($d['header']['header_menu_hover_bgcolor']) && $d['header']['header_menu_hover_bgcolor']){ | 365 | if(isset($d['header']['header_menu_hover_bgcolor']) && $d['header']['header_menu_hover_bgcolor']){ | |||
| 359 | ?> | 366 | ?> | |||
| 360 | @media (min-width: 992px){ | 367 | @media (min-width: 992px){ | |||
| 361 | .page-header.type1 .navigation li.level0.active, .page-header.type1 .navigation li.level0:hover, | 368 | .page-header.type1 .navigation li.level0.active, .page-header.type1 .navigation li.level0:hover, | |||
| 362 | .page-header .navigation li.level0.active, .page-header .navigation li.level0:hover { | 369 | .page-header .navigation li.level0.active, .page-header .navigation li.level0:hover { | |||
| 363 | background-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | 370 | background-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | |||
| 364 | } | 371 | } | |||
| 365 | .page-header.type19 .navigation:not(.side-megamenu) .level0 > .submenu { | 372 | .page-header.type19 .navigation:not(.side-megamenu) .level0 > .submenu { | |||
| 366 | border-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | 373 | border-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | |||
| 367 | } | 374 | } | |||
| 368 | } | 375 | } | |||
| 369 | <?php | 376 | <?php | |||
| 370 | } | 377 | } | |||
| 371 | if(isset($d['header']['header_sidemenu_hover_bgcolor']) && $d['header']['header_sidemenu_hover_bgcolor']){ | 378 | if(isset($d['header']['header_sidemenu_hover_bgcolor']) && $d['header']['header_sidemenu_hover_bgcolor']){ | |||
| 372 | ?> | 379 | ?> | |||
| 373 | @media (min-width: 992px){ | 380 | @media (min-width: 992px){ | |||
| 374 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | 381 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | |||
| 375 | .sw-megamenu.navigation.side-megamenu li.level0.active { | 382 | .sw-megamenu.navigation.side-megamenu li.level0.active { | |||
| 376 | background-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | 383 | background-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | |||
| 377 | } | 384 | } | |||
| 378 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a { | 385 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a { | |||
| 379 | border-top-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | 386 | border-top-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | |||
| 380 | } | 387 | } | |||
| 381 | } | 388 | } | |||
| 382 | <?php | 389 | <?php | |||
| 383 | } | 390 | } | |||
| 384 | if(isset($d['header']['header_menu_hover_color']) && $d['header']['header_menu_hover_color']){ | 391 | if(isset($d['header']['header_menu_hover_color']) && $d['header']['header_menu_hover_color']){ | |||
| 385 | ?> | 392 | ?> | |||
| 386 | @media (min-width: 992px){ | 393 | @media (min-width: 992px){ | |||
| 387 | .page-header .navigation li.level0.active, | 394 | .page-header .navigation li.level0.active, | |||
| 388 | .page-header .navigation li.level0:hover { | 395 | .page-header .navigation li.level0:hover { | |||
| 389 | color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | 396 | color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | |||
| 390 | } | 397 | } | |||
| 391 | .page-header.type2 .navigation .level0 .level-top:before { | 398 | .page-header.type2 .navigation .level0 .level-top:before { | |||
| 392 | background-color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | 399 | background-color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | |||
| 393 | } | 400 | } | |||
| 394 | } | 401 | } | |||
| 395 | <?php | 402 | <?php | |||
| 396 | } | 403 | } | |||
| 397 | if(isset($d['header']['header_sidemenu_hover_color']) && $d['header']['header_sidemenu_hover_color']){ | 404 | if(isset($d['header']['header_sidemenu_hover_color']) && $d['header']['header_sidemenu_hover_color']){ | |||
| 398 | ?> | 405 | ?> | |||
| 399 | @media (min-width: 992px){ | 406 | @media (min-width: 992px){ | |||
| 400 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | 407 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | |||
| 401 | .sw-megamenu.navigation.side-megamenu li.level0.active { | 408 | .sw-megamenu.navigation.side-megamenu li.level0.active { | |||
| 402 | color: <?php if (strlen($d['header']['header_sidemenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_color']; ?>; | 409 | color: <?php if (strlen($d['header']['header_sidemenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_color']; ?>; | |||
| 403 | } | 410 | } | |||
| 404 | } | 411 | } | |||
| 405 | <?php | 412 | <?php | |||
| 406 | } | 413 | } | |||
| 407 | if(isset($d['header']['header_menu_classicmenu_bgcolor']) && $d['header']['header_menu_classicmenu_bgcolor']){ | 414 | if(isset($d['header']['header_menu_classicmenu_bgcolor']) && $d['header']['header_menu_classicmenu_bgcolor']){ | |||
| 408 | ?> | 415 | ?> | |||
| 409 | @media (min-width: 992px){ | 416 | @media (min-width: 992px){ | |||
| 410 | .navigation .level0 .submenu, .sw-megamenu.navigation li.level0.classic .subchildmenu .subchildmenu { | 417 | .navigation .level0 .submenu, .sw-megamenu.navigation li.level0.classic .subchildmenu .subchildmenu { | |||
| 411 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_bgcolor']; ?>; | 418 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_bgcolor']; ?>; | |||
| 412 | } | 419 | } | |||
| 413 | } | 420 | } | |||
| 414 | <?php | 421 | <?php | |||
| 415 | } | 422 | } | |||
| 416 | if(isset($d['header']['header_menu_classicmenu_color']) && $d['header']['header_menu_classicmenu_color']){ | 423 | if(isset($d['header']['header_menu_classicmenu_color']) && $d['header']['header_menu_classicmenu_color']){ | |||
| 417 | ?> | 424 | ?> | |||
| 418 | @media (min-width: 992px){ | 425 | @media (min-width: 992px){ | |||
| 419 | .navigation .level0 .submenu a { | 426 | .navigation .level0 .submenu a { | |||
| 420 | color: <?php if (strlen($d['header']['header_menu_classicmenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_color']; ?>; | 427 | color: <?php if (strlen($d['header']['header_menu_classicmenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_color']; ?>; | |||
| 421 | } | 428 | } | |||
| 422 | } | 429 | } | |||
| 423 | <?php | 430 | <?php | |||
| 424 | } | 431 | } | |||
| 425 | if(isset($d['header']['header_menu_classicmenu_hover_bgcolor']) && $d['header']['header_menu_classicmenu_hover_bgcolor']){ | 432 | if(isset($d['header']['header_menu_classicmenu_hover_bgcolor']) && $d['header']['header_menu_classicmenu_hover_bgcolor']){ | |||
| 426 | ?> | 433 | ?> | |||
| 427 | @media (min-width: 992px){ | 434 | @media (min-width: 992px){ | |||
| 428 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | 435 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | |||
| 429 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_bgcolor']; ?>; | 436 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_bgcolor']; ?>; | |||
| 430 | } | 437 | } | |||
| 431 | } | 438 | } | |||
| 432 | <?php | 439 | <?php | |||
| 433 | } | 440 | } | |||
| 434 | if(isset($d['header']['header_menu_classicmenu_hover_color']) && $d['header']['header_menu_classicmenu_hover_color']){ | 441 | if(isset($d['header']['header_menu_classicmenu_hover_color']) && $d['header']['header_menu_classicmenu_hover_color']){ | |||
| 435 | ?> | 442 | ?> | |||
| 436 | @media (min-width: 992px){ | 443 | @media (min-width: 992px){ | |||
| 437 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | 444 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | |||
| 438 | color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_color']; ?>; | 445 | color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_color']; ?>; | |||
| 439 | } | 446 | } | |||
| 440 | } | 447 | } | |||
| 441 | <?php | 448 | <?php | |||
| 442 | } | 449 | } | |||
| 443 | if(isset($d['header']['header_menu_megamenu_bgcolor']) && $d['header']['header_menu_megamenu_bgcolor']){ | 450 | if(isset($d['header']['header_menu_megamenu_bgcolor']) && $d['header']['header_menu_megamenu_bgcolor']){ | |||
| 444 | ?> | 451 | ?> | |||
| 445 | @media (min-width: 992px){ | 452 | @media (min-width: 992px){ | |||
| 446 | .sw-megamenu.navigation li.level0.fullwidth > .submenu, .sw-megamenu.navigation li.level0.staticwidth > .submenu { | 453 | .sw-megamenu.navigation li.level0.fullwidth > .submenu, .sw-megamenu.navigation li.level0.staticwidth > .submenu { | |||
| 447 | background-color: <?php if (strlen($d['header']['header_menu_megamenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_bgcolor']; ?>; | 454 | background-color: <?php if (strlen($d['header']['header_menu_megamenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_bgcolor']; ?>; | |||
| 448 | } | 455 | } | |||
| 449 | } | 456 | } | |||
| 450 | <?php | 457 | <?php | |||
| 451 | } | 458 | } | |||
| 452 | if(isset($d['header']['header_menu_megamenu_color']) && $d['header']['header_menu_megamenu_color']){ | 459 | if(isset($d['header']['header_menu_megamenu_color']) && $d['header']['header_menu_megamenu_color']){ | |||
| 453 | ?> | 460 | ?> | |||
| 454 | @media (min-width: 992px){ | 461 | @media (min-width: 992px){ | |||
| 455 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a, .sw-megamenu.navigation li.level0.staticwidth > .submenu a { | 462 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a, .sw-megamenu.navigation li.level0.staticwidth > .submenu a { | |||
| 456 | color: <?php if (strlen($d['header']['header_menu_megamenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_color']; ?>; | 463 | color: <?php if (strlen($d['header']['header_menu_megamenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_color']; ?>; | |||
| 457 | } | 464 | } | |||
| 458 | } | 465 | } | |||
| 459 | <?php | 466 | <?php | |||
| 460 | } | 467 | } | |||
| 461 | if(isset($d['header']['header_menu_megamenu_hover_color']) && $d['header']['header_menu_megamenu_hover_color']){ | 468 | if(isset($d['header']['header_menu_megamenu_hover_color']) && $d['header']['header_menu_megamenu_hover_color']){ | |||
| 462 | ?> | 469 | ?> | |||
| 463 | @media (min-width: 992px){ | 470 | @media (min-width: 992px){ | |||
| 464 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a:hover, .sw-megamenu.navigation li.level0.staticwidth > .submenu a:hover { | 471 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a:hover, .sw-megamenu.navigation li.level0.staticwidth > .submenu a:hover { | |||
| 465 | color: <?php if (strlen($d['header']['header_menu_megamenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_hover_color']; ?>; | 472 | color: <?php if (strlen($d['header']['header_menu_megamenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_hover_color']; ?>; | |||
| 466 | } | 473 | } | |||
| 467 | } | 474 | } | |||
| 468 | <?php | 475 | <?php | |||
| 469 | } | 476 | } | |||
| 470 | if(isset($d['header']['header_menu_label1_bg_color']) && $d['header']['header_menu_label1_bg_color']){ | 477 | if(isset($d['header']['header_menu_label1_bg_color']) && $d['header']['header_menu_label1_bg_color']){ | |||
| 471 | ?> | 478 | ?> | |||
| 472 | @media (min-width: 992px){ | 479 | @media (min-width: 992px){ | |||
| 473 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 480 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 474 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 481 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | |||
| 475 | } | 482 | } | |||
| 476 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label1:before { | 483 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label1:before { | |||
| 477 | border-top-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 484 | border-top-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | |||
| 478 | } | 485 | } | |||
| 479 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label1:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label1:before { | 486 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label1:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label1:before { | |||
| 480 | border-right-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 487 | border-right-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | |||
| 481 | } | 488 | } | |||
| 482 | } | 489 | } | |||
| 483 | @media (max-width: 992px){ | 490 | @media (max-width: 992px){ | |||
| 484 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 491 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 485 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 492 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | |||
| 486 | } | 493 | } | |||
| 487 | .sw-megamenu.navigation span.cat-label.cat-label-label1:before { | 494 | .sw-megamenu.navigation span.cat-label.cat-label-label1:before { | |||
| 488 | border-right-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 495 | border-right-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | |||
| 489 | } | 496 | } | |||
| 490 | } | 497 | } | |||
| 491 | <?php | 498 | <?php | |||
| 492 | } | 499 | } | |||
| 493 | if(isset($d['header']['header_menu_label1_font_color']) && $d['header']['header_menu_label1_font_color']){ | 500 | if(isset($d['header']['header_menu_label1_font_color']) && $d['header']['header_menu_label1_font_color']){ | |||
| 494 | ?> | 501 | ?> | |||
| 495 | @media (min-width: 992px){ | 502 | @media (min-width: 992px){ | |||
| 496 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 503 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 497 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | 504 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | |||
| 498 | } | 505 | } | |||
| 499 | } | 506 | } | |||
| 500 | @media (max-width: 992px){ | 507 | @media (max-width: 992px){ | |||
| 501 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 508 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 502 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | 509 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | |||
| 503 | } | 510 | } | |||
| 504 | } | 511 | } | |||
| 505 | <?php | 512 | <?php | |||
| 506 | } | 513 | } | |||
| 507 | if(isset($d['header']['header_menu_label2_bg_color']) && $d['header']['header_menu_label2_bg_color']){ | 514 | if(isset($d['header']['header_menu_label2_bg_color']) && $d['header']['header_menu_label2_bg_color']){ | |||
| 508 | ?> | 515 | ?> | |||
| 509 | @media (min-width: 992px){ | 516 | @media (min-width: 992px){ | |||
| 510 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 517 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 511 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 518 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | |||
| 512 | } | 519 | } | |||
| 513 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label2:before { | 520 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label2:before { | |||
| 514 | border-top-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 521 | border-top-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | |||
| 515 | } | 522 | } | |||
| 516 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label2:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label2:before { | 523 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label2:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label2:before { | |||
| 517 | border-right-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 524 | border-right-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | |||
| 518 | } | 525 | } | |||
| 519 | } | 526 | } | |||
| 520 | @media (max-width: 992px){ | 527 | @media (max-width: 992px){ | |||
| 521 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 528 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 522 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 529 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | |||
| 523 | } | 530 | } | |||
| 524 | .sw-megamenu.navigation span.cat-label.cat-label-label2:before { | 531 | .sw-megamenu.navigation span.cat-label.cat-label-label2:before { | |||
| 525 | border-right-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 532 | border-right-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | |||
| 526 | } | 533 | } | |||
| 527 | } | 534 | } | |||
| 528 | <?php | 535 | <?php | |||
| 529 | } | 536 | } | |||
| 530 | if(isset($d['header']['header_menu_label2_font_color']) && $d['header']['header_menu_label2_font_color']){ | 537 | if(isset($d['header']['header_menu_label2_font_color']) && $d['header']['header_menu_label2_font_color']){ | |||
| 531 | ?> | 538 | ?> | |||
| 532 | @media (min-width: 992px){ | 539 | @media (min-width: 992px){ | |||
| 533 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 540 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 534 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | 541 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | |||
| 535 | } | 542 | } | |||
| 536 | } | 543 | } | |||
| 537 | @media (max-width: 992px){ | 544 | @media (max-width: 992px){ | |||
| 538 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 545 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 539 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | 546 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | |||
| 540 | } | 547 | } | |||
| 541 | } | 548 | } | |||
| 542 | <?php | 549 | <?php | |||
| 543 | } | 550 | } | |||
| 544 | if(isset($d['header']['header_menu_label3_bg_color']) && $d['header']['header_menu_label3_bg_color']){ | 551 | if(isset($d['header']['header_menu_label3_bg_color']) && $d['header']['header_menu_label3_bg_color']){ | |||
| 545 | ?> | 552 | ?> | |||
| 546 | @media (min-width: 992px){ | 553 | @media (min-width: 992px){ | |||
| 547 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 554 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 548 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 555 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | |||
| 549 | } | 556 | } | |||
| 550 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label3:before { | 557 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label3:before { | |||
| 551 | border-top-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 558 | border-top-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | |||
| 552 | } | 559 | } | |||
| 553 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label3:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label3:before { | 560 | .sw-megamenu.navigation li .subchildmenu li > a > span > span.cat-label.cat-label-label3:before, .sw-megamenu.navigation.side-megamenu li.level0 > a > span.cat-label.cat-label-label3:before { | |||
| 554 | border-right-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 561 | border-right-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | |||
| 555 | } | 562 | } | |||
| 556 | } | 563 | } | |||
| 557 | @media (max-width: 992px){ | 564 | @media (max-width: 992px){ | |||
| 558 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 565 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 559 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 566 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | |||
| 560 | } | 567 | } | |||
| 561 | .sw-megamenu.navigation span.cat-label.cat-label-label3:before { | 568 | .sw-megamenu.navigation span.cat-label.cat-label-label3:before { | |||
| 562 | border-right-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 569 | border-right-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | |||
| 563 | } | 570 | } | |||
| 564 | } | 571 | } | |||
| 565 | <?php | 572 | <?php | |||
| 566 | } | 573 | } | |||
| 567 | if(isset($d['header']['header_menu_label3_font_color']) && $d['header']['header_menu_label3_font_color']){ | 574 | if(isset($d['header']['header_menu_label3_font_color']) && $d['header']['header_menu_label3_font_color']){ | |||
| 568 | ?> | 575 | ?> | |||
| 569 | @media (min-width: 992px){ | 576 | @media (min-width: 992px){ | |||
| 570 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 577 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 571 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | 578 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | |||
| 572 | } | 579 | } | |||
| 573 | } | 580 | } | |||
| 574 | @media (max-width: 992px){ | 581 | @media (max-width: 992px){ | |||
| 575 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 582 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 576 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | 583 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | |||
| 577 | } | 584 | } | |||
| 578 | } | 585 | } | |||
| 579 | <?php | 586 | <?php | |||
| 580 | } | 587 | } | |||
| 581 | if(isset($d['header']['header_search_bgcolor']) && $d['header']['header_search_bgcolor']){ | 588 | if(isset($d['header']['header_search_bgcolor']) && $d['header']['header_search_bgcolor']){ | |||
| 582 | ?> | 589 | ?> | |||
| 583 | .search-area .block.block-search { | 590 | .search-area .block.block-search { | |||
| 584 | background-color: <?php if (strlen($d['header']['header_search_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bgcolor']; ?>; | 591 | background-color: <?php if (strlen($d['header']['header_search_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bgcolor']; ?>; | |||
| 585 | } | 592 | } | |||
| 586 | <?php | 593 | <?php | |||
| 587 | } | 594 | } | |||
| 588 | if(isset($d['header']['header_search_text_color']) && $d['header']['header_search_text_color']){ | 595 | if(isset($d['header']['header_search_text_color']) && $d['header']['header_search_text_color']){ | |||
| 589 | ?> | 596 | ?> | |||
| 590 | .search-area { | 597 | .search-area { | |||
| 591 | color: <?php if (strlen($d['header']['header_search_text_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_text_color']; ?>; | 598 | color: <?php if (strlen($d['header']['header_search_text_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_text_color']; ?>; | |||
| 592 | } | 599 | } | |||
| 593 | <?php | 600 | <?php | |||
| 594 | } | 601 | } | |||
| 595 | if(isset($d['header']['header_search_bordercolor']) && $d['header']['header_search_bordercolor']){ | 602 | if(isset($d['header']['header_search_bordercolor']) && $d['header']['header_search_bordercolor']){ | |||
| 596 | ?> | 603 | ?> | |||
| 597 | .search-area { | 604 | .search-area { | |||
| 598 | border-color: <?php if (strlen($d['header']['header_search_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor']; ?>; | 605 | border-color: <?php if (strlen($d['header']['header_search_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor']; ?>; | |||
| 599 | } | 606 | } | |||
| 600 | <?php | 607 | <?php | |||
| 601 | } | 608 | } | |||
| 602 | if(isset($d['header']['header_minicart_color']) && $d['header']['header_minicart_color']){ | 609 | if(isset($d['header']['header_minicart_color']) && $d['header']['header_minicart_color']){ | |||
| 603 | ?> | 610 | ?> | |||
| 604 | @media (min-width: 768px){ | 611 | @media (min-width: 768px){ | |||
| 605 | .header.panel .minicart-wrapper .action.showcart .counter.qty { | 612 | .header.panel .minicart-wrapper .action.showcart .counter.qty { | |||
| 606 | color: <?php if (strlen($d['header']['header_minicart_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_color']; ?>; | 613 | color: <?php if (strlen($d['header']['header_minicart_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_color']; ?>; | |||
| 607 | } | 614 | } | |||
| 608 | } | 615 | } | |||
| 609 | <?php | 616 | <?php | |||
| 610 | } | 617 | } | |||
| 611 | if(isset($d['header']['header_minicart_icon_color']) && $d['header']['header_minicart_icon_color']){ | 618 | if(isset($d['header']['header_minicart_icon_color']) && $d['header']['header_minicart_icon_color']){ | |||
| 612 | ?> | 619 | ?> | |||
| 613 | @media (min-width: 992px){ | 620 | @media (min-width: 992px){ | |||
| 614 | .page-header .minicart-wrapper .action.showcart, .page-header .minicart-wrapper .action.showcart:before, .page-header .minicart-wrapper .action.showcart.active:before, .page-header.type18 .wishlist { | 621 | .page-header .minicart-wrapper .action.showcart, .page-header .minicart-wrapper .action.showcart:before, .page-header .minicart-wrapper .action.showcart.active:before, .page-header.type18 .wishlist { | |||
| 615 | color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>; | 622 | color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>; | |||
| 616 | } | 623 | } | |||
| 617 | .cart-design-2 .action.showcart .minicart-icon {border-color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>;} | 624 | .cart-design-2 .action.showcart .minicart-icon {border-color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>;} | |||
| 618 | } | 625 | } | |||
| 619 | <?php | 626 | <?php | |||
| 620 | } | 627 | } | |||
| 621 | } | 628 | } | |||
| 622 | if(isset($d['footer']['custom']) && $d['footer']['custom']==1){ | 629 | if(isset($d['footer']['custom']) && $d['footer']['custom']==1){ | |||
| 623 | if(isset($d['footer']['footer_top_bgcolor']) && $d['footer']['footer_top_bgcolor']){ | 630 | if(isset($d['footer']['footer_top_bgcolor']) && $d['footer']['footer_top_bgcolor']){ | |||
| 624 | ?> | 631 | ?> | |||
| 625 | .footer-top{ | 632 | .footer-top{ | |||
| 626 | background-color:<?php if (strlen($d['footer']['footer_top_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_bgcolor']; ?>; | 633 | background-color:<?php if (strlen($d['footer']['footer_top_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_bgcolor']; ?>; | |||
| 627 | } | 634 | } | |||
| 628 | <?php | 635 | <?php | |||
| 629 | } | 636 | } | |||
| 630 | if(isset($d['footer']['footer_top_color']) && $d['footer']['footer_top_color']){ | 637 | if(isset($d['footer']['footer_top_color']) && $d['footer']['footer_top_color']){ | |||
| 631 | ?> | 638 | ?> | |||
| 632 | .footer-top{ | 639 | .footer-top{ | |||
| 633 | color:<?php if (strlen($d['footer']['footer_top_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_color']; ?>; | 640 | color:<?php if (strlen($d['footer']['footer_top_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_color']; ?>; | |||
| 634 | } | 641 | } | |||
| 635 | <?php | 642 | <?php | |||
| 636 | } | 643 | } | |||
| 637 | if(isset($d['footer']['footer_top_link_color']) && $d['footer']['footer_top_link_color']){ | 644 | if(isset($d['footer']['footer_top_link_color']) && $d['footer']['footer_top_link_color']){ | |||
| 638 | ?> | 645 | ?> | |||
| 639 | .footer-top a { | 646 | .footer-top a { | |||
| 640 | color:<?php if (strlen($d['footer']['footer_top_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_color']; ?>; | 647 | color:<?php if (strlen($d['footer']['footer_top_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_color']; ?>; | |||
| 641 | } | 648 | } | |||
| 642 | <?php | 649 | <?php | |||
| 643 | } | 650 | } | |||
| 644 | if(isset($d['footer']['footer_top_link_hover_color']) && $d['footer']['footer_top_link_hover_color']){ | 651 | if(isset($d['footer']['footer_top_link_hover_color']) && $d['footer']['footer_top_link_hover_color']){ | |||
| 645 | ?> | 652 | ?> | |||
| 646 | .footer-top a:hover{ | 653 | .footer-top a:hover{ | |||
| 647 | color:<?php if (strlen($d['footer']['footer_top_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_hover_color']; ?>; | 654 | color:<?php if (strlen($d['footer']['footer_top_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_hover_color']; ?>; | |||
| 648 | } | 655 | } | |||
| 649 | <?php | 656 | <?php | |||
| 650 | } | 657 | } | |||
| 651 | if(isset($d['footer']['footer_middle_bgcolor']) && $d['footer']['footer_middle_bgcolor']){ | 658 | if(isset($d['footer']['footer_middle_bgcolor']) && $d['footer']['footer_middle_bgcolor']){ | |||
| 652 | ?> | 659 | ?> | |||
| 653 | .footer-middle{ | 660 | .footer-middle{ | |||
| 654 | background-color:<?php if (strlen($d['footer']['footer_middle_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_bgcolor']; ?>; | 661 | background-color:<?php if (strlen($d['footer']['footer_middle_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_bgcolor']; ?>; | |||
| 655 | } | 662 | } | |||
| 656 | <?php | 663 | <?php | |||
| 657 | } | 664 | } | |||
| 658 | if(isset($d['footer']['footer_middle_color']) && $d['footer']['footer_middle_color']){ | 665 | if(isset($d['footer']['footer_middle_color']) && $d['footer']['footer_middle_color']){ | |||
| 659 | ?> | 666 | ?> | |||
| 660 | .footer-middle, .footer-middle p{ | 667 | .footer-middle, .footer-middle p{ | |||
| 661 | color:<?php if (strlen($d['footer']['footer_middle_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_color']; ?>; | 668 | color:<?php if (strlen($d['footer']['footer_middle_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_color']; ?>; | |||
| 662 | } | 669 | } | |||
| 663 | <?php | 670 | <?php | |||
| 664 | } | 671 | } | |||
| 665 | if(isset($d['footer']['footer_middle_link_color']) && $d['footer']['footer_middle_link_color']){ | 672 | if(isset($d['footer']['footer_middle_link_color']) && $d['footer']['footer_middle_link_color']){ | |||
| 666 | ?> | 673 | ?> | |||
| 667 | .footer-middle a{ | 674 | .footer-middle a{ | |||
| 668 | color:<?php if (strlen($d['footer']['footer_middle_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_color']; ?>; | 675 | color:<?php if (strlen($d['footer']['footer_middle_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_color']; ?>; | |||
| 669 | } | 676 | } | |||
| 670 | <?php | 677 | <?php | |||
| 671 | } | 678 | } | |||
| 672 | if(isset($d['footer']['footer_middle_link_hover_color']) && $d['footer']['footer_middle_link_hover_color']){ | 679 | if(isset($d['footer']['footer_middle_link_hover_color']) && $d['footer']['footer_middle_link_hover_color']){ | |||
| 673 | ?> | 680 | ?> | |||
| 674 | .footer-middle a:hover,.footer .widget .tagcloud a:hover{ | 681 | .footer-middle a:hover,.footer .widget .tagcloud a:hover{ | |||
| 675 | color:<?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>; | 682 | color:<?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>; | |||
| 676 | } | 683 | } | |||
| 677 | .footer .widget .tagcloud a:hover {border-color: <?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>;} | 684 | .footer .widget .tagcloud a:hover {border-color: <?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>;} | |||
| 678 | <?php | 685 | <?php | |||
| 679 | } | 686 | } | |||
| 680 | if(isset($d['footer']['footer_middle_title_color']) && $d['footer']['footer_middle_title_color']){ | 687 | if(isset($d['footer']['footer_middle_title_color']) && $d['footer']['footer_middle_title_color']){ | |||
| 681 | ?> | 688 | ?> | |||
| 682 | .footer-middle .block .block-title strong, .footer .widget-title,.footer .contact-details strong{ | 689 | .footer-middle .block .block-title strong, .footer .widget-title,.footer .contact-details strong{ | |||
| 683 | color:<?php if (strlen($d['footer']['footer_middle_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_title_color']; ?>; | 690 | color:<?php if (strlen($d['footer']['footer_middle_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_title_color']; ?>; | |||
| 684 | } | 691 | } | |||
| 685 | <?php | 692 | <?php | |||
| 686 | } | 693 | } | |||
| 687 | if(isset($d['footer']['footer_middle_links_icon_color']) && $d['footer']['footer_middle_links_icon_color']){ | 694 | if(isset($d['footer']['footer_middle_links_icon_color']) && $d['footer']['footer_middle_links_icon_color']){ | |||
| 688 | ?> | 695 | ?> | |||
| 689 | .footer-middle [class^="porto-icon-"].theme-color, .footer-middle [class*=" porto-icon-"].theme-color{ | 696 | .footer-middle [class^="porto-icon-"].theme-color, .footer-middle [class*=" porto-icon-"].theme-color{ | |||
| 690 | color:<?php if (strlen($d['footer']['footer_middle_links_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_links_icon_color']; ?> !important; | 697 | color:<?php if (strlen($d['footer']['footer_middle_links_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_links_icon_color']; ?> !important; | |||
| 691 | } | 698 | } | |||
| 692 | <?php | 699 | <?php | |||
| 693 | } | 700 | } | |||
| 694 | if(isset($d['footer']['footer_middle_2_bgcolor']) && $d['footer']['footer_middle_2_bgcolor']){ | 701 | if(isset($d['footer']['footer_middle_2_bgcolor']) && $d['footer']['footer_middle_2_bgcolor']){ | |||
| 695 | ?> | 702 | ?> | |||
| 696 | .footer-middle-2{ | 703 | .footer-middle-2{ | |||
| 697 | background-color:<?php if (strlen($d['footer']['footer_middle_2_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_bgcolor']; ?>; | 704 | background-color:<?php if (strlen($d['footer']['footer_middle_2_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_bgcolor']; ?>; | |||
| 698 | } | 705 | } | |||
| 699 | <?php | 706 | <?php | |||
| 700 | } | 707 | } | |||
| 701 | if(isset($d['footer']['footer_middle_2_color']) && $d['footer']['footer_middle_2_color']){ | 708 | if(isset($d['footer']['footer_middle_2_color']) && $d['footer']['footer_middle_2_color']){ | |||
| 702 | ?> | 709 | ?> | |||
| 703 | .footer-middle-2, .footer-middle-2 p{ | 710 | .footer-middle-2, .footer-middle-2 p{ | |||
| 704 | color:<?php if (strlen($d['footer']['footer_middle_2_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_color']; ?>; | 711 | color:<?php if (strlen($d['footer']['footer_middle_2_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_color']; ?>; | |||
| 705 | } | 712 | } | |||
| 706 | <?php | 713 | <?php | |||
| 707 | } | 714 | } | |||
| 708 | if(isset($d['footer']['footer_middle_2_link_color']) && $d['footer']['footer_middle_2_link_color']){ | 715 | if(isset($d['footer']['footer_middle_2_link_color']) && $d['footer']['footer_middle_2_link_color']){ | |||
| 709 | ?> | 716 | ?> | |||
| 710 | .footer-middle-2 a{ | 717 | .footer-middle-2 a{ | |||
| 711 | color:<?php if (strlen($d['footer']['footer_middle_2_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_color']; ?>; | 718 | color:<?php if (strlen($d['footer']['footer_middle_2_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_color']; ?>; | |||
| 712 | } | 719 | } | |||
| 713 | <?php | 720 | <?php | |||
| 714 | } | 721 | } | |||
| 715 | if(isset($d['footer']['footer_middle_2_link_hover_color']) && $d['footer']['footer_middle_2_link_hover_color']){ | 722 | if(isset($d['footer']['footer_middle_2_link_hover_color']) && $d['footer']['footer_middle_2_link_hover_color']){ | |||
| 716 | ?> | 723 | ?> | |||
| 717 | .footer-middle-2 a:hover{ | 724 | .footer-middle-2 a:hover{ | |||
| 718 | color:<?php if (strlen($d['footer']['footer_middle_2_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_hover_color']; ?>; | 725 | color:<?php if (strlen($d['footer']['footer_middle_2_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_hover_color']; ?>; | |||
| 719 | } | 726 | } | |||
| 720 | <?php | 727 | <?php | |||
| 721 | } | 728 | } | |||
| 722 | if(isset($d['footer']['footer_middle_2_title_color']) && $d['footer']['footer_middle_2_title_color']){ | 729 | if(isset($d['footer']['footer_middle_2_title_color']) && $d['footer']['footer_middle_2_title_color']){ | |||
| 723 | ?> | 730 | ?> | |||
| 724 | .footer-middle-2 .block .block-title strong{ | 731 | .footer-middle-2 .block .block-title strong{ | |||
| 725 | color:<?php if (strlen($d['footer']['footer_middle_2_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_title_color']; ?>; | 732 | color:<?php if (strlen($d['footer']['footer_middle_2_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_title_color']; ?>; | |||
| 726 | } | 733 | } | |||
| 727 | <?php | 734 | <?php | |||
| 728 | } | 735 | } | |||
| 729 | if(isset($d['footer']['footer_middle_2_links_icon_color']) && $d['footer']['footer_middle_2_links_icon_color']){ | 736 | if(isset($d['footer']['footer_middle_2_links_icon_color']) && $d['footer']['footer_middle_2_links_icon_color']){ | |||
| 730 | ?> | 737 | ?> | |||
| 731 | .footer-middle-2 [class^="porto-icon-"].theme-color, .footer-middle-2 [class*=" porto-icon-"].theme-color{ | 738 | .footer-middle-2 [class^="porto-icon-"].theme-color, .footer-middle-2 [class*=" porto-icon-"].theme-color{ | |||
| 732 | color:<?php if (strlen($d['footer']['footer_middle_2_links_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_links_icon_color']; ?> !important; | 739 | color:<?php if (strlen($d['footer']['footer_middle_2_links_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_links_icon_color']; ?> !important; | |||
| 733 | } | 740 | } | |||
| 734 | <?php | 741 | <?php | |||
| 735 | } | 742 | } | |||
| 736 | if(isset($d['footer']['footer_middle_ribbon_bgcolor']) && $d['footer']['footer_middle_ribbon_bgcolor']){ | 743 | if(isset($d['footer']['footer_middle_ribbon_bgcolor']) && $d['footer']['footer_middle_ribbon_bgcolor']){ | |||
| 737 | ?> | 744 | ?> | |||
| 738 | .footer .footer-ribbon{ | 745 | .footer .footer-ribbon{ | |||
| 739 | background-color:<?php if (strlen($d['footer']['footer_middle_ribbon_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_bgcolor']; ?>; | 746 | background-color:<?php if (strlen($d['footer']['footer_middle_ribbon_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_bgcolor']; ?>; | |||
| 740 | } | 747 | } | |||
| 741 | <?php | 748 | <?php | |||
| 742 | } | 749 | } | |||
| 743 | if(isset($d['footer']['footer_middle_ribbon_shadow_color']) && $d['footer']['footer_middle_ribbon_shadow_color']){ | 750 | if(isset($d['footer']['footer_middle_ribbon_shadow_color']) && $d['footer']['footer_middle_ribbon_shadow_color']){ | |||
| 744 | ?> | 751 | ?> | |||
| 745 | .footer .footer-ribbon:before{ | 752 | .footer .footer-ribbon:before{ | |||
| 746 | border-right-color:<?php if (strlen($d['footer']['footer_middle_ribbon_shadow_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_shadow_color']; ?>; | 753 | border-right-color:<?php if (strlen($d['footer']['footer_middle_ribbon_shadow_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_shadow_color']; ?>; | |||
| 747 | border-left-color:<?php if (strlen($d['footer']['footer_middle_ribbon_shadow_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_shadow_color']; ?>; | 754 | border-left-color:<?php if (strlen($d['footer']['footer_middle_ribbon_shadow_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_shadow_color']; ?>; | |||
| 748 | } | 755 | } | |||
| 749 | <?php | 756 | <?php | |||
| 750 | } | 757 | } | |||
| 751 | if(isset($d['footer']['footer_middle_ribbon_color']) && $d['footer']['footer_middle_ribbon_color']){ | 758 | if(isset($d['footer']['footer_middle_ribbon_color']) && $d['footer']['footer_middle_ribbon_color']){ | |||
| 752 | ?> | 759 | ?> | |||
| 753 | .footer-ribbon span{ | 760 | .footer-ribbon span{ | |||
| 754 | color:<?php if (strlen($d['footer']['footer_middle_ribbon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_color']; ?>; | 761 | color:<?php if (strlen($d['footer']['footer_middle_ribbon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_color']; ?>; | |||
| 755 | } | 762 | } | |||
| 756 | <?php | 763 | <?php | |||
| 757 | } | 764 | } | |||
| 758 | if(isset($d['footer']['footer_bottom_bgcolor']) && $d['footer']['footer_bottom_bgcolor']){ | 765 | if(isset($d['footer']['footer_bottom_bgcolor']) && $d['footer']['footer_bottom_bgcolor']){ | |||
| 759 | ?> | 766 | ?> | |||
| 760 | .footer-bottom{ | 767 | .footer-bottom{ | |||
| 761 | background-color:<?php if (strlen($d['footer']['footer_bottom_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_bgcolor']; ?>; | 768 | background-color:<?php if (strlen($d['footer']['footer_bottom_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_bgcolor']; ?>; | |||
| 762 | } | 769 | } | |||
| 763 | <?php | 770 | <?php | |||
| 764 | } | 771 | } | |||
| 765 | if(isset($d['footer']['footer_bottom_color']) && $d['footer']['footer_bottom_color']){ | 772 | if(isset($d['footer']['footer_bottom_color']) && $d['footer']['footer_bottom_color']){ | |||
| 766 | ?> | 773 | ?> | |||
| 767 | .footer-bottom, .footer-bottom p{ | 774 | .footer-bottom, .footer-bottom p{ | |||
| 768 | color:<?php if (strlen($d['footer']['footer_bottom_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_color']; ?>; | 775 | color:<?php if (strlen($d['footer']['footer_bottom_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_color']; ?>; | |||
| 769 | } | 776 | } | |||
| 770 | <?php | 777 | <?php | |||
| 771 | } | 778 | } | |||
| 772 | if(isset($d['footer']['footer_bottom_link_color']) && $d['footer']['footer_bottom_link_color']){ | 779 | if(isset($d['footer']['footer_bottom_link_color']) && $d['footer']['footer_bottom_link_color']){ | |||
| 773 | ?> | 780 | ?> | |||
| 774 | .footer-bottom a{ | 781 | .footer-bottom a{ | |||
| 775 | color:<?php if (strlen($d['footer']['footer_bottom_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_color']; ?>; | 782 | color:<?php if (strlen($d['footer']['footer_bottom_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_color']; ?>; | |||
| 776 | } | 783 | } | |||
| 777 | <?php | 784 | <?php | |||
| 778 | } | 785 | } | |||
| 779 | if(isset($d['footer']['footer_bottom_link_hover_color']) && $d['footer']['footer_bottom_link_hover_color']){ | 786 | if(isset($d['footer']['footer_bottom_link_hover_color']) && $d['footer']['footer_bottom_link_hover_color']){ | |||
| 780 | ?> | 787 | ?> | |||
| 781 | .footer-bottom a:hover{ | 788 | .footer-bottom a:hover{ | |||
| 782 | color:<?php if (strlen($d['footer']['footer_bottom_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_hover_color']; ?>; | 789 | color:<?php if (strlen($d['footer']['footer_bottom_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_hover_color']; ?>; | |||
| 783 | } | 790 | } | |||
| 784 | <?php | 791 | <?php | |||
| 785 | } | 792 | } | |||
| 786 | } | 793 | } | |||
| 787 | ?> | 794 | ?> |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.