Produced by Araxis Merge on 2023-07-12 04:43:06 +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 | Porto v4.0.5/Theme Files/Porto Theme/app/code/Smartwave/Porto/view/frontend/templates/porto/css | design.phtml | 2023-02-27 05:24:46 +0000 |
| 2 | Porto v4.0.6/Theme Files/Porto Theme/app/code/Smartwave/Porto/view/frontend/templates/porto/css | design.phtml | 2023-06-18 04:30:47 +0000 |
| Description | Between Files 1 and 2 | |
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 1550 |
| Changed | 1 | 14 |
| Inserted | 0 | 0 |
| 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 | --border-search-color: <?php if (strlen($d['header']['header_search_bordercolor'] | 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 | <?php if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ ?> | |||||
| 47 | --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']; ?>; | |||||
| 49 | --button-text-color: <?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?>; | |||||
| 50 | <?php }?> | |||||
| 51 | <?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']; ?>; | |||||
| 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']; ?>; | |||||
| 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']; ?>; | |||||
| 55 | <?php }?> | |||||
| 46 | } | 56 | } | |||
| 47 | html .background-color-primary { | 57 | html .background-color-primary { | |||
| 48 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | 58 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | |||
| 49 | } | 59 | } | |||
| 50 | .theme-color{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 60 | .theme-color{color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 51 | .theme-hover-color:hover{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;} | |||
| 52 | .theme-bg-color{background-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;} | |||
| 53 | .theme-border-color{border-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;} | |||
| 54 | .theme-hover-bg-color:hover{background-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;} | |||
| 55 | 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']; ?>;} | 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']; ?>;} | |||
| 56 | 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;} | 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;} | |||
| 57 | .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 | 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 | |||
| 58 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 68 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 59 | .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected | 69 | .swatch-attribute.size .swatch-option.selected, .swatch-attribute.manufacturer .swatch-option.selected | |||
| 60 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | 70 | {background-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important;} | |||
| 61 | .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 | 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 | |||
| 62 | {border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 72 | {border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 63 | .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 | 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 | |||
| 64 | {border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 74 | {border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 65 | .minicart-wrapper .block-minicart:before, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary:before, .block-header-customer-login:before | 75 | .minicart-wrapper .block-minicart:before, .iwd-one-page-checkout-sidebar .iwd-opc-block-summary:before, .block-header-customer-login:before | |||
| 66 | {border-bottom-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | 76 | {border-bottom-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>;} | |||
| 67 | @media (max-width: 991px) { | 77 | @media (max-width: 991px) { | |||
| 68 | .navigation a { | 78 | .navigation a { | |||
| 69 | color: #777 !important; | 79 | color: #777 !important; | |||
| 70 | } | 80 | } | |||
| 71 | .navigation a:hover, .nav-sections .header.links a:hover { | 81 | .navigation a:hover, .nav-sections .header.links a:hover { | |||
| 72 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | 82 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?> !important; | |||
| 73 | } | 83 | } | |||
| 74 | 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{ | 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{ | |||
| 75 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 85 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 76 | } | 86 | } | |||
| 77 | 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 { | 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 { | |||
| 78 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 88 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 79 | } | 89 | } | |||
| 80 | } | 90 | } | |||
| 81 | @media (min-width: 992px) { | 91 | @media (min-width: 992px) { | |||
| 82 | .page-header .navigation li.level0 { | 92 | .page-header .navigation li.level0 { | |||
| 83 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 93 | color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 84 | } | 94 | } | |||
| 85 | .page-header.type24 .navigation li.level0 > a:before { | 95 | .page-header.type24 .navigation li.level0 > a:before { | |||
| 86 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 96 | background-color: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 87 | } | 97 | } | |||
| 88 | .navigation .level0 .submenu { | 98 | .navigation .level0 .submenu { | |||
| 89 | border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 99 | border-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 90 | } | 100 | } | |||
| 91 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a,.sw-megamenu.navigation.side-megamenu li.level0.active > a { | 101 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a,.sw-megamenu.navigation.side-megamenu li.level0.active > a { | |||
| 92 | border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 102 | border-top-color:<?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 93 | } | 103 | } | |||
| 94 | #main-toggle-menu .menu-title:hover, #main-toggle-menu .menu-title:not(.closed) { | 104 | #main-toggle-menu .menu-title:hover, #main-toggle-menu .menu-title:not(.closed) { | |||
| 95 | background: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | 105 | background: <?php if (strlen($d['general']['theme_color']) == 6): echo "#"; endif; ?><?php echo $d['general']['theme_color']; ?>; | |||
| 96 | border-right-color: <?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']; ?>; | |||
| 97 | } | 107 | } | |||
| 98 | } | 108 | } | |||
| 99 | <?php | 109 | <?php | |||
| 100 | } | 110 | } | |||
| 101 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | 111 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | |||
| 102 | ?> | 112 | ?> | |||
| 103 | .page-main { | 113 | .page-main { | |||
| 104 | <?php | 114 | <?php | |||
| 105 | if(isset($d['main']['main_bgcolor']) && $d['main']['main_bgcolor']) { | 115 | if(isset($d['main']['main_bgcolor']) && $d['main']['main_bgcolor']) { | |||
| 106 | ?> | 116 | ?> | |||
| 107 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | 117 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | |||
| 108 | <?php | 118 | <?php | |||
| 109 | } | 119 | } | |||
| 110 | if(isset($d['main']['main_bg_image']) && $d['main']['main_bg_image']){ | 120 | if(isset($d['main']['main_bg_image']) && $d['main']['main_bg_image']){ | |||
| 111 | ?> | 121 | ?> | |||
| 112 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/main_bg/".$d['main']['main_bg_image']; ?>); | 122 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/main_bg/".$d['main']['main_bg_image']; ?>); | |||
| 113 | <?php | 123 | <?php | |||
| 114 | } | 124 | } | |||
| 115 | if(isset($d['main']['main_custom_style']) && $d['main']['main_custom_style']){ | 125 | if(isset($d['main']['main_custom_style']) && $d['main']['main_custom_style']){ | |||
| 116 | ?> | 126 | ?> | |||
| 117 | <?php echo $d['main']['main_custom_style']; ?>; | 127 | <?php echo $d['main']['main_custom_style']; ?>; | |||
| 118 | <?php | 128 | <?php | |||
| 119 | } | 129 | } | |||
| 120 | ?> | 130 | ?> | |||
| 121 | } | 131 | } | |||
| 122 | 132 | |||||
| 123 | <?php | 133 | <?php | |||
| 124 | } | 134 | } | |||
| 125 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | 135 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | |||
| 126 | ?> | 136 | ?> | |||
| 127 | .page-wrapper { | 137 | .page-wrapper { | |||
| 128 | <?php | 138 | <?php | |||
| 129 | if(isset($d['page']['page_bgcolor']) && $d['page']['page_bgcolor']) { | 139 | if(isset($d['page']['page_bgcolor']) && $d['page']['page_bgcolor']) { | |||
| 130 | ?> | 140 | ?> | |||
| 131 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | 141 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | |||
| 132 | <?php | 142 | <?php | |||
| 133 | } | 143 | } | |||
| 134 | if(isset($d['page']['page_bg_image']) && $d['page']['page_bg_image']){ | 144 | if(isset($d['page']['page_bg_image']) && $d['page']['page_bg_image']){ | |||
| 135 | ?> | 145 | ?> | |||
| 136 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/page_bg/".$d['page']['page_bg_image']; ?>); | 146 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/page_bg/".$d['page']['page_bg_image']; ?>); | |||
| 137 | <?php | 147 | <?php | |||
| 138 | } | 148 | } | |||
| 139 | if(isset($d['page']['page_custom_style']) && $d['page']['page_custom_style']){ | 149 | if(isset($d['page']['page_custom_style']) && $d['page']['page_custom_style']){ | |||
| 140 | ?> | 150 | ?> | |||
| 141 | <?php echo $d['page']['page_custom_style']; ?>; | 151 | <?php echo $d['page']['page_custom_style']; ?>; | |||
| 142 | <?php | 152 | <?php | |||
| 143 | } | 153 | } | |||
| 144 | ?> | 154 | ?> | |||
| 145 | } | 155 | } | |||
| 146 | <?php | 156 | <?php | |||
| 147 | } | 157 | } | |||
| 148 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | 158 | if(isset($d['page']['custom']) && $d['page']['custom']==1){ | |||
| 149 | if($d['page']['page_bgcolor']) { | 159 | if($d['page']['page_bgcolor']) { | |||
| 150 | ?> | 160 | ?> | |||
| 151 | .filterproduct-title .content { | 161 | .filterproduct-title .content { | |||
| 152 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | 162 | background-color:<?php if (strlen($d['page']['page_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['page']['page_bgcolor']; ?>; | |||
| 153 | } | 163 | } | |||
| 154 | <?php | 164 | <?php | |||
| 155 | } | 165 | } | |||
| 156 | } | 166 | } | |||
| 157 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | 167 | if(isset($d['main']['custom']) && $d['main']['custom']==1){ | |||
| 158 | if($d['main']['main_bgcolor']) { | 168 | if($d['main']['main_bgcolor']) { | |||
| 159 | ?> | 169 | ?> | |||
| 160 | .page-main .filterproduct-title .content { | 170 | .page-main .filterproduct-title .content { | |||
| 161 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | 171 | background-color:<?php if (strlen($d['main']['main_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['main']['main_bgcolor']; ?>; | |||
| 162 | } | 172 | } | |||
| 163 | <?php | 173 | <?php | |||
| 164 | } | 174 | } | |||
| 165 | } | 175 | } | |||
| 166 | if(isset($d['colors']['custom']) && $d['colors']['custom']==1){ | 176 | if(isset($d['colors']['custom']) && $d['colors']['custom']==1){ | |||
| 167 | if(isset($d['colors']['text_color']) && $d['colors']['text_color']){ | 177 | if(isset($d['colors']['text_color']) && $d['colors']['text_color']){ | |||
| 168 | ?> | 178 | ?> | |||
| 169 | html,body{color:<?php if (strlen($d['colors']['text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['text_color']; ?>} | 179 | html,body{color:<?php if (strlen($d['colors']['text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['text_color']; ?>} | |||
| 170 | <?php | 180 | <?php | |||
| 171 | } | 181 | } | |||
| 172 | if(isset($d['colors']['link_color']) && $d['colors']['link_color']){ | 182 | if(isset($d['colors']['link_color']) && $d['colors']['link_color']){ | |||
| 173 | ?> | 183 | ?> | |||
| 174 | a, a:focus {color:<?php if (strlen($d['colors']['link_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_color']; ?>} | 184 | a, a:focus {color:<?php if (strlen($d['colors']['link_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_color']; ?>} | |||
| 175 | <?php | 185 | <?php | |||
| 176 | } | 186 | } | |||
| 177 | if(isset($d['colors']['link_hover_color']) && $d['colors']['link_hover_color']){ | 187 | if(isset($d['colors']['link_hover_color']) && $d['colors']['link_hover_color']){ | |||
| 178 | ?> | 188 | ?> | |||
| 179 | a:hover{color:<?php if (strlen($d['colors']['link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_hover_color']; ?>} | 189 | a:hover{color:<?php if (strlen($d['colors']['link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['link_hover_color']; ?>} | |||
| 180 | <?php | 190 | <?php | |||
| 181 | } | 191 | } | |||
| 182 | ?> | 192 | ?> | |||
| 183 | button.action.primary{ | 193 | button.action.primary{ | |||
| 184 | <?php | 194 | <?php | |||
| 185 | if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ | 195 | if(isset($d['colors']['button_bg_color']) && $d['colors']['button_bg_color']){ | |||
| 186 | ?> | 196 | ?> | |||
| 187 | background-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | 197 | background-color:<?php if (strlen($d['colors']['button_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_bg_color']; ?>; | |||
| 188 | border-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']; ?>; | |||
| 189 | <?php | 199 | <?php | |||
| 190 | } | 200 | } | |||
| 191 | if(isset($d['colors']['button_text_color']) && $d['colors']['button_text_color']){ | 201 | if(isset($d['colors']['button_text_color']) && $d['colors']['button_text_color']){ | |||
| 192 | ?> | 202 | ?> | |||
| 193 | color:<?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?> | 203 | color:<?php if (strlen($d['colors']['button_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_text_color']; ?> | |||
| 194 | <?php | 204 | <?php | |||
| 195 | } | 205 | } | |||
| 196 | ?> | 206 | ?> | |||
| 197 | } | 207 | } | |||
| 198 | button.action.primary:hover{ | 208 | button.action.primary:hover{ | |||
| 199 | <?php | 209 | <?php | |||
| 200 | if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ | 210 | if(isset($d['colors']['button_hover_bg_color']) && $d['colors']['button_hover_bg_color']){ | |||
| 201 | ?> | 211 | ?> | |||
| 202 | background-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | 212 | background-color:<?php if (strlen($d['colors']['button_hover_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_bg_color']; ?>; | |||
| 203 | border-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']; ?>; | |||
| 204 | <?php | 214 | <?php | |||
| 205 | } | 215 | } | |||
| 206 | if(isset($d['colors']['button_hover_text_color']) && $d['colors']['button_hover_text_color']){ | 216 | if(isset($d['colors']['button_hover_text_color']) && $d['colors']['button_hover_text_color']){ | |||
| 207 | ?> | 217 | ?> | |||
| 208 | color:<?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?> | 218 | color:<?php if (strlen($d['colors']['button_hover_text_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['button_hover_text_color']; ?> | |||
| 209 | <?php | 219 | <?php | |||
| 210 | } | 220 | } | |||
| 211 | ?> | 221 | ?> | |||
| 212 | } | 222 | } | |||
| 213 | <?php | 223 | <?php | |||
| 214 | if(isset($d['colors']['breadcrumbs_bg_color']) && $d['colors']['breadcrumbs_bg_color']){ | 224 | if(isset($d['colors']['breadcrumbs_bg_color']) && $d['colors']['breadcrumbs_bg_color']){ | |||
| 215 | ?> | 225 | ?> | |||
| 216 | .page-wrapper > .breadcrumbs{background-color:<?php if (strlen($d['colors']['breadcrumbs_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_bg_color']; ?>} | 226 | .page-wrapper > .breadcrumbs{background-color:<?php if (strlen($d['colors']['breadcrumbs_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_bg_color']; ?>} | |||
| 217 | <?php | 227 | <?php | |||
| 218 | } | 228 | } | |||
| 219 | if(isset($d['colors']['breadcrumbs_color']) && $d['colors']['breadcrumbs_color']){ | 229 | if(isset($d['colors']['breadcrumbs_color']) && $d['colors']['breadcrumbs_color']){ | |||
| 220 | ?> | 230 | ?> | |||
| 221 | .page-wrapper > .breadcrumbs{color:<?php if (strlen($d['colors']['breadcrumbs_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_color']; ?>} | 231 | .page-wrapper > .breadcrumbs{color:<?php if (strlen($d['colors']['breadcrumbs_color']) == 6): echo "#"; endif; ?><?php echo $d['colors']['breadcrumbs_color']; ?>} | |||
| 222 | <?php | 232 | <?php | |||
| 223 | } | 233 | } | |||
| 224 | if(isset($d['colors']['breadcrumbs_links_color']) && $d['colors']['breadcrumbs_links_color']){ | 234 | if(isset($d['colors']['breadcrumbs_links_color']) && $d['colors']['breadcrumbs_links_color']){ | |||
| 225 | ?> | 235 | ?> | |||
| 226 | .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']; ?>} | 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']; ?>} | |||
| 227 | <?php | 237 | <?php | |||
| 228 | } | 238 | } | |||
| 229 | if(isset($d['colors']['breadcrumbs_links_hover_color']) && $d['colors']['breadcrumbs_links_hover_color']){ | 239 | if(isset($d['colors']['breadcrumbs_links_hover_color']) && $d['colors']['breadcrumbs_links_hover_color']){ | |||
| 230 | ?> | 240 | ?> | |||
| 231 | .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']; ?>} | 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']; ?>} | |||
| 232 | <?php | 242 | <?php | |||
| 233 | } | 243 | } | |||
| 234 | if(isset($d['colors']['sale_bg_color']) && $d['colors']['sale_bg_color']){ | 244 | if(isset($d['colors']['sale_bg_color']) && $d['colors']['sale_bg_color']){ | |||
| 235 | ?> | 245 | ?> | |||
| 236 | .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']; ?>} | 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']; ?>} | |||
| 237 | <?php | 247 | <?php | |||
| 238 | } | 248 | } | |||
| 239 | if(isset($d['colors']['sale_font_color']) && $d['colors']['sale_font_color']){ | 249 | if(isset($d['colors']['sale_font_color']) && $d['colors']['sale_font_color']){ | |||
| 240 | ?> | 250 | ?> | |||
| 241 | .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']; ?>} | 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']; ?>} | |||
| 242 | <?php | 252 | <?php | |||
| 243 | } | 253 | } | |||
| 244 | if(isset($d['colors']['new_bg_color']) && $d['colors']['new_bg_color']){ | 254 | if(isset($d['colors']['new_bg_color']) && $d['colors']['new_bg_color']){ | |||
| 245 | ?> | 255 | ?> | |||
| 246 | .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']; ?>} | 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']; ?>} | |||
| 247 | <?php | 257 | <?php | |||
| 248 | } | 258 | } | |||
| 249 | if(isset($d['colors']['new_font_color']) && $d['colors']['new_font_color']){ | 259 | if(isset($d['colors']['new_font_color']) && $d['colors']['new_font_color']){ | |||
| 250 | ?> | 260 | ?> | |||
| 251 | .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']; ?>} | 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']; ?>} | |||
| 252 | <?php | 262 | <?php | |||
| 253 | } | 263 | } | |||
| 254 | if(isset($d['colors']['price_slider_bg_color']) && $d['colors']['price_slider_bg_color']){ | 264 | if(isset($d['colors']['price_slider_bg_color']) && $d['colors']['price_slider_bg_color']){ | |||
| 255 | ?> | 265 | ?> | |||
| 256 | #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']; ?>} | 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']; ?>} | |||
| 257 | <?php | 267 | <?php | |||
| 258 | } | 268 | } | |||
| 259 | if(isset($d['colors']['price_slider_handle_color']) && $d['colors']['price_slider_handle_color']){ | 269 | if(isset($d['colors']['price_slider_handle_color']) && $d['colors']['price_slider_handle_color']){ | |||
| 260 | ?> | 270 | ?> | |||
| 261 | #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']; ?>} | 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']; ?>} | |||
| 262 | <?php | 272 | <?php | |||
| 263 | } | 273 | } | |||
| 264 | } | 274 | } | |||
| 265 | if(isset($d['header']['custom']) && $d['header']['custom']==1){ | 275 | if(isset($d['header']['custom']) && $d['header']['custom']==1){ | |||
| 266 | if(isset($d['header']['header_bgcolor']) && $d['header']['header_bgcolor']){ | 276 | if(isset($d['header']['header_bgcolor']) && $d['header']['header_bgcolor']){ | |||
| 267 | ?> | 277 | ?> | |||
| 268 | .page-header.type1, .page-header.type23, .page-header,header.page-header.sticky-header .header-main { | 278 | .page-header.type1, .page-header.type23, .page-header,header.page-header.sticky-header .header-main { | |||
| 269 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | 279 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | |||
| 270 | } | 280 | } | |||
| 271 | @media (max-width: 767px){ | 281 | @media (max-width: 767px){ | |||
| 272 | header.page-header.sticky-header .header-main { | 282 | header.page-header.sticky-header .header-main { | |||
| 273 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | 283 | background-color: <?php if (strlen($d['header']['header_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bgcolor']; ?>; | |||
| 274 | } | 284 | } | |||
| 275 | } | 285 | } | |||
| 276 | <?php | 286 | <?php | |||
| 277 | } | 287 | } | |||
| 278 | if(isset($d['header']['header_bg_image']) && $d['header']['header_bg_image']){ | 288 | if(isset($d['header']['header_bg_image']) && $d['header']['header_bg_image']){ | |||
| 279 | ?> | 289 | ?> | |||
| 280 | .page-header.type1,.page-header.type23,.page-header:not(.type9), .page-header.type9 .header-main { | 290 | .page-header.type1,.page-header.type23,.page-header:not(.type9), .page-header.type9 .header-main { | |||
| 281 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/header_bg/".$d['header']['header_bg_image']; ?>); | 291 | background-image:url(<?php echo str_replace("https://","//",str_replace("http://","//",$_helper->getBaseMediaUrl()))."porto/header_bg/".$d['header']['header_bg_image']; ?>); | |||
| 282 | background-repeat: repeat; | 292 | background-repeat: repeat; | |||
| 283 | } | 293 | } | |||
| 284 | <?php | 294 | <?php | |||
| 285 | } | 295 | } | |||
| 286 | if(isset($d['header']['header_bordercolor']) && $d['header']['header_bordercolor']){ | 296 | if(isset($d['header']['header_bordercolor']) && $d['header']['header_bordercolor']){ | |||
| 287 | ?> | 297 | ?> | |||
| 288 | .page-header { | 298 | .page-header { | |||
| 289 | border-top-color: <?php if (strlen($d['header']['header_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bordercolor']; ?>; | 299 | border-top-color: <?php if (strlen($d['header']['header_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_bordercolor']; ?>; | |||
| 290 | } | 300 | } | |||
| 291 | <?php | 301 | <?php | |||
| 292 | } | 302 | } | |||
| 293 | if(isset($d['header']['header_textcolor']) && $d['header']['header_textcolor']){ | 303 | if(isset($d['header']['header_textcolor']) && $d['header']['header_textcolor']){ | |||
| 294 | ?> | 304 | ?> | |||
| 295 | .page-header .header-main { | 305 | .page-header .header-main { | |||
| 296 | color: <?php if (strlen($d['header']['header_textcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_textcolor']; ?>; | 306 | color: <?php if (strlen($d['header']['header_textcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_textcolor']; ?>; | |||
| 297 | } | 307 | } | |||
| 298 | <?php | 308 | <?php | |||
| 299 | } | 309 | } | |||
| 300 | if(isset($d['header']['header_linkcolor']) && $d['header']['header_linkcolor']){ | 310 | if(isset($d['header']['header_linkcolor']) && $d['header']['header_linkcolor']){ | |||
| 301 | ?> | 311 | ?> | |||
| 302 | .page-header .header-main a, .page-header.type5 .search-area a.search-toggle-icon{ | 312 | .page-header .header-main a, .page-header.type5 .search-area a.search-toggle-icon{ | |||
| 303 | color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>; | 313 | color: <?php if (strlen($d['header']['header_linkcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_linkcolor']; ?>; | |||
| 304 | } | 314 | } | |||
| 305 | .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']; ?>;} | 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']; ?>;} | |||
| 306 | <?php | 316 | <?php | |||
| 307 | } | 317 | } | |||
| 308 | if(isset($d['header']['header_top_links_bgcolor']) && $d['header']['header_top_links_bgcolor']){ | 318 | if(isset($d['header']['header_top_links_bgcolor']) && $d['header']['header_top_links_bgcolor']){ | |||
| 309 | ?> | 319 | ?> | |||
| 310 | .page-header .panel.wrapper,.main-panel-top { | 320 | .page-header .panel.wrapper,.main-panel-top { | |||
| 311 | background-color: <?php if (strlen($d['header']['header_top_links_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_bgcolor']; ?>; | 321 | background-color: <?php if (strlen($d['header']['header_top_links_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_bgcolor']; ?>; | |||
| 312 | } | 322 | } | |||
| 313 | <?php | 323 | <?php | |||
| 314 | } | 324 | } | |||
| 315 | if(isset($d['header']['header_top_links_color']) && $d['header']['header_top_links_color']){ | 325 | if(isset($d['header']['header_top_links_color']) && $d['header']['header_top_links_color']){ | |||
| 316 | ?> | 326 | ?> | |||
| 317 | .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 { | 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 { | |||
| 318 | color: <?php if (strlen($d['header']['header_top_links_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_color']; ?>; | 328 | color: <?php if (strlen($d['header']['header_top_links_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_top_links_color']; ?>; | |||
| 319 | } | 329 | } | |||
| 320 | <?php | 330 | <?php | |||
| 321 | } | 331 | } | |||
| 322 | if(isset($d['header']['header_menu_bgcolor']) && $d['header']['header_menu_bgcolor']){ | 332 | if(isset($d['header']['header_menu_bgcolor']) && $d['header']['header_menu_bgcolor']){ | |||
| 323 | ?> | 333 | ?> | |||
| 324 | @media (min-width: 992px){ | 334 | @media (min-width: 992px){ | |||
| 325 | .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{ | 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{ | |||
| 326 | background-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>; | 336 | background-color: <?php if (strlen($d['header']['header_menu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_bgcolor']; ?>; | |||
| 327 | } | 337 | } | |||
| 328 | .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']; ?>;} | 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']; ?>;} | |||
| 329 | } | 339 | } | |||
| 330 | <?php | 340 | <?php | |||
| 331 | } | 341 | } | |||
| 332 | if(isset($d['header']['header_menu_color']) && $d['header']['header_menu_color']){ | 342 | if(isset($d['header']['header_menu_color']) && $d['header']['header_menu_color']){ | |||
| 333 | ?> | 343 | ?> | |||
| 334 | @media (min-width: 992px){ | 344 | @media (min-width: 992px){ | |||
| 335 | .page-header .navigation li.level0 { | 345 | .page-header .navigation li.level0 { | |||
| 336 | color: <?php if (strlen($d['header']['header_menu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_color']; ?>; | 346 | color: <?php if (strlen($d['header']['header_menu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_color']; ?>; | |||
| 337 | } | 347 | } | |||
| 338 | } | 348 | } | |||
| 339 | <?php | 349 | <?php | |||
| 340 | } | 350 | } | |||
| 341 | if(isset($d['header']['header_sidemenu_color']) && $d['header']['header_sidemenu_color']){ | 351 | if(isset($d['header']['header_sidemenu_color']) && $d['header']['header_sidemenu_color']){ | |||
| 342 | ?> | 352 | ?> | |||
| 343 | @media (min-width: 992px){ | 353 | @media (min-width: 992px){ | |||
| 344 | .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']; ?>;} | 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']; ?>;} | |||
| 345 | } | 355 | } | |||
| 346 | <?php | 356 | <?php | |||
| 347 | } | 357 | } | |||
| 348 | if(isset($d['header']['header_menu_hover_bgcolor']) && $d['header']['header_menu_hover_bgcolor']){ | 358 | if(isset($d['header']['header_menu_hover_bgcolor']) && $d['header']['header_menu_hover_bgcolor']){ | |||
| 349 | ?> | 359 | ?> | |||
| 350 | @media (min-width: 992px){ | 360 | @media (min-width: 992px){ | |||
| 351 | .page-header.type1 .navigation li.level0.active, .page-header.type1 .navigation li.level0:hover, | 361 | .page-header.type1 .navigation li.level0.active, .page-header.type1 .navigation li.level0:hover, | |||
| 352 | .page-header .navigation li.level0.active, .page-header .navigation li.level0:hover { | 362 | .page-header .navigation li.level0.active, .page-header .navigation li.level0:hover { | |||
| 353 | background-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | 363 | background-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | |||
| 354 | } | 364 | } | |||
| 355 | .page-header.type19 .navigation:not(.side-megamenu) .level0 > .submenu { | 365 | .page-header.type19 .navigation:not(.side-megamenu) .level0 > .submenu { | |||
| 356 | border-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | 366 | border-color: <?php if (strlen($d['header']['header_menu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_bgcolor']; ?>; | |||
| 357 | } | 367 | } | |||
| 358 | } | 368 | } | |||
| 359 | <?php | 369 | <?php | |||
| 360 | } | 370 | } | |||
| 361 | if(isset($d['header']['header_sidemenu_hover_bgcolor']) && $d['header']['header_sidemenu_hover_bgcolor']){ | 371 | if(isset($d['header']['header_sidemenu_hover_bgcolor']) && $d['header']['header_sidemenu_hover_bgcolor']){ | |||
| 362 | ?> | 372 | ?> | |||
| 363 | @media (min-width: 992px){ | 373 | @media (min-width: 992px){ | |||
| 364 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | 374 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | |||
| 365 | .sw-megamenu.navigation.side-megamenu li.level0.active { | 375 | .sw-megamenu.navigation.side-megamenu li.level0.active { | |||
| 366 | background-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | 376 | background-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | |||
| 367 | } | 377 | } | |||
| 368 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a { | 378 | .sw-megamenu.navigation.side-megamenu li.level0:hover > a { | |||
| 369 | border-top-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | 379 | border-top-color: <?php if (strlen($d['header']['header_sidemenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_bgcolor']; ?>; | |||
| 370 | } | 380 | } | |||
| 371 | } | 381 | } | |||
| 372 | <?php | 382 | <?php | |||
| 373 | } | 383 | } | |||
| 374 | if(isset($d['header']['header_menu_hover_color']) && $d['header']['header_menu_hover_color']){ | 384 | if(isset($d['header']['header_menu_hover_color']) && $d['header']['header_menu_hover_color']){ | |||
| 375 | ?> | 385 | ?> | |||
| 376 | @media (min-width: 992px){ | 386 | @media (min-width: 992px){ | |||
| 377 | .page-header .navigation li.level0.active, | 387 | .page-header .navigation li.level0.active, | |||
| 378 | .page-header .navigation li.level0:hover { | 388 | .page-header .navigation li.level0:hover { | |||
| 379 | color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | 389 | color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | |||
| 380 | } | 390 | } | |||
| 381 | .page-header.type2 .navigation .level0 .level-top:before { | 391 | .page-header.type2 .navigation .level0 .level-top:before { | |||
| 382 | background-color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | 392 | background-color: <?php if (strlen($d['header']['header_menu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_hover_color']; ?>; | |||
| 383 | } | 393 | } | |||
| 384 | } | 394 | } | |||
| 385 | <?php | 395 | <?php | |||
| 386 | } | 396 | } | |||
| 387 | if(isset($d['header']['header_sidemenu_hover_color']) && $d['header']['header_sidemenu_hover_color']){ | 397 | if(isset($d['header']['header_sidemenu_hover_color']) && $d['header']['header_sidemenu_hover_color']){ | |||
| 388 | ?> | 398 | ?> | |||
| 389 | @media (min-width: 992px){ | 399 | @media (min-width: 992px){ | |||
| 390 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | 400 | .sw-megamenu.navigation.side-megamenu li.level0:hover, | |||
| 391 | .sw-megamenu.navigation.side-megamenu li.level0.active { | 401 | .sw-megamenu.navigation.side-megamenu li.level0.active { | |||
| 392 | color: <?php if (strlen($d['header']['header_sidemenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_color']; ?>; | 402 | color: <?php if (strlen($d['header']['header_sidemenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_sidemenu_hover_color']; ?>; | |||
| 393 | } | 403 | } | |||
| 394 | } | 404 | } | |||
| 395 | <?php | 405 | <?php | |||
| 396 | } | 406 | } | |||
| 397 | if(isset($d['header']['header_menu_classicmenu_bgcolor']) && $d['header']['header_menu_classicmenu_bgcolor']){ | 407 | if(isset($d['header']['header_menu_classicmenu_bgcolor']) && $d['header']['header_menu_classicmenu_bgcolor']){ | |||
| 398 | ?> | 408 | ?> | |||
| 399 | @media (min-width: 992px){ | 409 | @media (min-width: 992px){ | |||
| 400 | .navigation .level0 .submenu, .sw-megamenu.navigation li.level0.classic .subchildmenu .subchildmenu { | 410 | .navigation .level0 .submenu, .sw-megamenu.navigation li.level0.classic .subchildmenu .subchildmenu { | |||
| 401 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_bgcolor']; ?>; | 411 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_bgcolor']; ?>; | |||
| 402 | } | 412 | } | |||
| 403 | } | 413 | } | |||
| 404 | <?php | 414 | <?php | |||
| 405 | } | 415 | } | |||
| 406 | if(isset($d['header']['header_menu_classicmenu_color']) && $d['header']['header_menu_classicmenu_color']){ | 416 | if(isset($d['header']['header_menu_classicmenu_color']) && $d['header']['header_menu_classicmenu_color']){ | |||
| 407 | ?> | 417 | ?> | |||
| 408 | @media (min-width: 992px){ | 418 | @media (min-width: 992px){ | |||
| 409 | .navigation .level0 .submenu a { | 419 | .navigation .level0 .submenu a { | |||
| 410 | color: <?php if (strlen($d['header']['header_menu_classicmenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_color']; ?>; | 420 | color: <?php if (strlen($d['header']['header_menu_classicmenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_color']; ?>; | |||
| 411 | } | 421 | } | |||
| 412 | } | 422 | } | |||
| 413 | <?php | 423 | <?php | |||
| 414 | } | 424 | } | |||
| 415 | if(isset($d['header']['header_menu_classicmenu_hover_bgcolor']) && $d['header']['header_menu_classicmenu_hover_bgcolor']){ | 425 | if(isset($d['header']['header_menu_classicmenu_hover_bgcolor']) && $d['header']['header_menu_classicmenu_hover_bgcolor']){ | |||
| 416 | ?> | 426 | ?> | |||
| 417 | @media (min-width: 992px){ | 427 | @media (min-width: 992px){ | |||
| 418 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | 428 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | |||
| 419 | background-color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_bgcolor']; ?>; | 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']; ?>; | |||
| 420 | } | 430 | } | |||
| 421 | } | 431 | } | |||
| 422 | <?php | 432 | <?php | |||
| 423 | } | 433 | } | |||
| 424 | if(isset($d['header']['header_menu_classicmenu_hover_color']) && $d['header']['header_menu_classicmenu_hover_color']){ | 434 | if(isset($d['header']['header_menu_classicmenu_hover_color']) && $d['header']['header_menu_classicmenu_hover_color']){ | |||
| 425 | ?> | 435 | ?> | |||
| 426 | @media (min-width: 992px){ | 436 | @media (min-width: 992px){ | |||
| 427 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | 437 | .navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus { | |||
| 428 | color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_color']; ?>; | 438 | color: <?php if (strlen($d['header']['header_menu_classicmenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_classicmenu_hover_color']; ?>; | |||
| 429 | } | 439 | } | |||
| 430 | } | 440 | } | |||
| 431 | <?php | 441 | <?php | |||
| 432 | } | 442 | } | |||
| 433 | if(isset($d['header']['header_menu_megamenu_bgcolor']) && $d['header']['header_menu_megamenu_bgcolor']){ | 443 | if(isset($d['header']['header_menu_megamenu_bgcolor']) && $d['header']['header_menu_megamenu_bgcolor']){ | |||
| 434 | ?> | 444 | ?> | |||
| 435 | @media (min-width: 992px){ | 445 | @media (min-width: 992px){ | |||
| 436 | .sw-megamenu.navigation li.level0.fullwidth > .submenu, .sw-megamenu.navigation li.level0.staticwidth > .submenu { | 446 | .sw-megamenu.navigation li.level0.fullwidth > .submenu, .sw-megamenu.navigation li.level0.staticwidth > .submenu { | |||
| 437 | background-color: <?php if (strlen($d['header']['header_menu_megamenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_bgcolor']; ?>; | 447 | background-color: <?php if (strlen($d['header']['header_menu_megamenu_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_bgcolor']; ?>; | |||
| 438 | } | 448 | } | |||
| 439 | } | 449 | } | |||
| 440 | <?php | 450 | <?php | |||
| 441 | } | 451 | } | |||
| 442 | if(isset($d['header']['header_menu_megamenu_color']) && $d['header']['header_menu_megamenu_color']){ | 452 | if(isset($d['header']['header_menu_megamenu_color']) && $d['header']['header_menu_megamenu_color']){ | |||
| 443 | ?> | 453 | ?> | |||
| 444 | @media (min-width: 992px){ | 454 | @media (min-width: 992px){ | |||
| 445 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a, .sw-megamenu.navigation li.level0.staticwidth > .submenu a { | 455 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a, .sw-megamenu.navigation li.level0.staticwidth > .submenu a { | |||
| 446 | color: <?php if (strlen($d['header']['header_menu_megamenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_color']; ?>; | 456 | color: <?php if (strlen($d['header']['header_menu_megamenu_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_color']; ?>; | |||
| 447 | } | 457 | } | |||
| 448 | } | 458 | } | |||
| 449 | <?php | 459 | <?php | |||
| 450 | } | 460 | } | |||
| 451 | if(isset($d['header']['header_menu_megamenu_hover_color']) && $d['header']['header_menu_megamenu_hover_color']){ | 461 | if(isset($d['header']['header_menu_megamenu_hover_color']) && $d['header']['header_menu_megamenu_hover_color']){ | |||
| 452 | ?> | 462 | ?> | |||
| 453 | @media (min-width: 992px){ | 463 | @media (min-width: 992px){ | |||
| 454 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a:hover, .sw-megamenu.navigation li.level0.staticwidth > .submenu a:hover { | 464 | .sw-megamenu.navigation li.level0.fullwidth > .submenu a:hover, .sw-megamenu.navigation li.level0.staticwidth > .submenu a:hover { | |||
| 455 | color: <?php if (strlen($d['header']['header_menu_megamenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_hover_color']; ?>; | 465 | color: <?php if (strlen($d['header']['header_menu_megamenu_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_megamenu_hover_color']; ?>; | |||
| 456 | } | 466 | } | |||
| 457 | } | 467 | } | |||
| 458 | <?php | 468 | <?php | |||
| 459 | } | 469 | } | |||
| 460 | if(isset($d['header']['header_menu_label1_bg_color']) && $d['header']['header_menu_label1_bg_color']){ | 470 | if(isset($d['header']['header_menu_label1_bg_color']) && $d['header']['header_menu_label1_bg_color']){ | |||
| 461 | ?> | 471 | ?> | |||
| 462 | @media (min-width: 992px){ | 472 | @media (min-width: 992px){ | |||
| 463 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 473 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 464 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 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']; ?>; | |||
| 465 | } | 475 | } | |||
| 466 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label1:before { | 476 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label1:before { | |||
| 467 | 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']; ?>; | 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']; ?>; | |||
| 468 | } | 478 | } | |||
| 469 | .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 { | 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 { | |||
| 470 | 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']; ?>; | 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']; ?>; | |||
| 471 | } | 481 | } | |||
| 472 | } | 482 | } | |||
| 473 | @media (max-width: 992px){ | 483 | @media (max-width: 992px){ | |||
| 474 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 484 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 475 | background-color: <?php if (strlen($d['header']['header_menu_label1_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_bg_color']; ?>; | 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']; ?>; | |||
| 476 | } | 486 | } | |||
| 477 | .sw-megamenu.navigation span.cat-label.cat-label-label1:before { | 487 | .sw-megamenu.navigation span.cat-label.cat-label-label1:before { | |||
| 478 | 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']; ?>; | 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']; ?>; | |||
| 479 | } | 489 | } | |||
| 480 | } | 490 | } | |||
| 481 | <?php | 491 | <?php | |||
| 482 | } | 492 | } | |||
| 483 | if(isset($d['header']['header_menu_label1_font_color']) && $d['header']['header_menu_label1_font_color']){ | 493 | if(isset($d['header']['header_menu_label1_font_color']) && $d['header']['header_menu_label1_font_color']){ | |||
| 484 | ?> | 494 | ?> | |||
| 485 | @media (min-width: 992px){ | 495 | @media (min-width: 992px){ | |||
| 486 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 496 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 487 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | 497 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | |||
| 488 | } | 498 | } | |||
| 489 | } | 499 | } | |||
| 490 | @media (max-width: 992px){ | 500 | @media (max-width: 992px){ | |||
| 491 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | 501 | .sw-megamenu.navigation span.cat-label.cat-label-label1 { | |||
| 492 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | 502 | color: <?php if (strlen($d['header']['header_menu_label1_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label1_font_color']; ?>; | |||
| 493 | } | 503 | } | |||
| 494 | } | 504 | } | |||
| 495 | <?php | 505 | <?php | |||
| 496 | } | 506 | } | |||
| 497 | if(isset($d['header']['header_menu_label2_bg_color']) && $d['header']['header_menu_label2_bg_color']){ | 507 | if(isset($d['header']['header_menu_label2_bg_color']) && $d['header']['header_menu_label2_bg_color']){ | |||
| 498 | ?> | 508 | ?> | |||
| 499 | @media (min-width: 992px){ | 509 | @media (min-width: 992px){ | |||
| 500 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 510 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 501 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 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']; ?>; | |||
| 502 | } | 512 | } | |||
| 503 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label2:before { | 513 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label2:before { | |||
| 504 | 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']; ?>; | 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']; ?>; | |||
| 505 | } | 515 | } | |||
| 506 | .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 { | 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 { | |||
| 507 | 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']; ?>; | 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']; ?>; | |||
| 508 | } | 518 | } | |||
| 509 | } | 519 | } | |||
| 510 | @media (max-width: 992px){ | 520 | @media (max-width: 992px){ | |||
| 511 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 521 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 512 | background-color: <?php if (strlen($d['header']['header_menu_label2_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_bg_color']; ?>; | 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']; ?>; | |||
| 513 | } | 523 | } | |||
| 514 | .sw-megamenu.navigation span.cat-label.cat-label-label2:before { | 524 | .sw-megamenu.navigation span.cat-label.cat-label-label2:before { | |||
| 515 | 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']; ?>; | 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']; ?>; | |||
| 516 | } | 526 | } | |||
| 517 | } | 527 | } | |||
| 518 | <?php | 528 | <?php | |||
| 519 | } | 529 | } | |||
| 520 | if(isset($d['header']['header_menu_label2_font_color']) && $d['header']['header_menu_label2_font_color']){ | 530 | if(isset($d['header']['header_menu_label2_font_color']) && $d['header']['header_menu_label2_font_color']){ | |||
| 521 | ?> | 531 | ?> | |||
| 522 | @media (min-width: 992px){ | 532 | @media (min-width: 992px){ | |||
| 523 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 533 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 524 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | 534 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | |||
| 525 | } | 535 | } | |||
| 526 | } | 536 | } | |||
| 527 | @media (max-width: 992px){ | 537 | @media (max-width: 992px){ | |||
| 528 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | 538 | .sw-megamenu.navigation span.cat-label.cat-label-label2 { | |||
| 529 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | 539 | color: <?php if (strlen($d['header']['header_menu_label2_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label2_font_color']; ?>; | |||
| 530 | } | 540 | } | |||
| 531 | } | 541 | } | |||
| 532 | <?php | 542 | <?php | |||
| 533 | } | 543 | } | |||
| 534 | if(isset($d['header']['header_menu_label3_bg_color']) && $d['header']['header_menu_label3_bg_color']){ | 544 | if(isset($d['header']['header_menu_label3_bg_color']) && $d['header']['header_menu_label3_bg_color']){ | |||
| 535 | ?> | 545 | ?> | |||
| 536 | @media (min-width: 992px){ | 546 | @media (min-width: 992px){ | |||
| 537 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 547 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 538 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 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']; ?>; | |||
| 539 | } | 549 | } | |||
| 540 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label3:before { | 550 | .sw-megamenu.navigation li.level0 > a > span.cat-label.cat-label-label3:before { | |||
| 541 | 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']; ?>; | 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']; ?>; | |||
| 542 | } | 552 | } | |||
| 543 | .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 { | 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 { | |||
| 544 | 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']; ?>; | 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']; ?>; | |||
| 545 | } | 555 | } | |||
| 546 | } | 556 | } | |||
| 547 | @media (max-width: 992px){ | 557 | @media (max-width: 992px){ | |||
| 548 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 558 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 549 | background-color: <?php if (strlen($d['header']['header_menu_label3_bg_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_bg_color']; ?>; | 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']; ?>; | |||
| 550 | } | 560 | } | |||
| 551 | .sw-megamenu.navigation span.cat-label.cat-label-label3:before { | 561 | .sw-megamenu.navigation span.cat-label.cat-label-label3:before { | |||
| 552 | 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']; ?>; | 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']; ?>; | |||
| 553 | } | 563 | } | |||
| 554 | } | 564 | } | |||
| 555 | <?php | 565 | <?php | |||
| 556 | } | 566 | } | |||
| 557 | if(isset($d['header']['header_menu_label3_font_color']) && $d['header']['header_menu_label3_font_color']){ | 567 | if(isset($d['header']['header_menu_label3_font_color']) && $d['header']['header_menu_label3_font_color']){ | |||
| 558 | ?> | 568 | ?> | |||
| 559 | @media (min-width: 992px){ | 569 | @media (min-width: 992px){ | |||
| 560 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 570 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 561 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | 571 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | |||
| 562 | } | 572 | } | |||
| 563 | } | 573 | } | |||
| 564 | @media (max-width: 992px){ | 574 | @media (max-width: 992px){ | |||
| 565 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | 575 | .sw-megamenu.navigation span.cat-label.cat-label-label3 { | |||
| 566 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | 576 | color: <?php if (strlen($d['header']['header_menu_label3_font_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_menu_label3_font_color']; ?>; | |||
| 567 | } | 577 | } | |||
| 568 | } | 578 | } | |||
| 569 | <?php | 579 | <?php | |||
| 570 | } | 580 | } | |||
| 571 | if(isset($d['header']['header_search_bgcolor']) && $d['header']['header_search_bgcolor']){ | 581 | if(isset($d['header']['header_search_bgcolor']) && $d['header']['header_search_bgcolor']){ | |||
| 572 | ?> | 582 | ?> | |||
| 573 | .search-area .block.block-search { | 583 | .search-area .block.block-search { | |||
| 574 | background-color: <?php if (strlen($d['header']['header_search_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bgcolor']; ?>; | 584 | background-color: <?php if (strlen($d['header']['header_search_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bgcolor']; ?>; | |||
| 575 | } | 585 | } | |||
| 576 | <?php | 586 | <?php | |||
| 577 | } | 587 | } | |||
| 578 | if(isset($d['header']['header_search_text_color']) && $d['header']['header_search_text_color']){ | 588 | if(isset($d['header']['header_search_text_color']) && $d['header']['header_search_text_color']){ | |||
| 579 | ?> | 589 | ?> | |||
| 580 | .search-area { | 590 | .search-area { | |||
| 581 | color: <?php if (strlen($d['header']['header_search_text_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_text_color']; ?>; | 591 | color: <?php if (strlen($d['header']['header_search_text_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_text_color']; ?>; | |||
| 582 | } | 592 | } | |||
| 583 | <?php | 593 | <?php | |||
| 584 | } | 594 | } | |||
| 585 | if(isset($d['header']['header_search_bordercolor']) && $d['header']['header_search_bordercolor']){ | 595 | if(isset($d['header']['header_search_bordercolor']) && $d['header']['header_search_bordercolor']){ | |||
| 586 | ?> | 596 | ?> | |||
| 587 | .search-area { | 597 | .search-area { | |||
| 588 | border-color: <?php if (strlen($d['header']['header_search_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor']; ?>; | 598 | border-color: <?php if (strlen($d['header']['header_search_bordercolor']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_search_bordercolor']; ?>; | |||
| 589 | } | 599 | } | |||
| 590 | <?php | 600 | <?php | |||
| 591 | } | 601 | } | |||
| 592 | if(isset($d['header']['header_minicart_color']) && $d['header']['header_minicart_color']){ | 602 | if(isset($d['header']['header_minicart_color']) && $d['header']['header_minicart_color']){ | |||
| 593 | ?> | 603 | ?> | |||
| 594 | @media (min-width: 768px){ | 604 | @media (min-width: 768px){ | |||
| 595 | .header.panel .minicart-wrapper .action.showcart .counter.qty { | 605 | .header.panel .minicart-wrapper .action.showcart .counter.qty { | |||
| 596 | color: <?php if (strlen($d['header']['header_minicart_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_color']; ?>; | 606 | color: <?php if (strlen($d['header']['header_minicart_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_color']; ?>; | |||
| 597 | } | 607 | } | |||
| 598 | } | 608 | } | |||
| 599 | <?php | 609 | <?php | |||
| 600 | } | 610 | } | |||
| 601 | if(isset($d['header']['header_minicart_icon_color']) && $d['header']['header_minicart_icon_color']){ | 611 | if(isset($d['header']['header_minicart_icon_color']) && $d['header']['header_minicart_icon_color']){ | |||
| 602 | ?> | 612 | ?> | |||
| 603 | @media (min-width: 992px){ | 613 | @media (min-width: 992px){ | |||
| 604 | .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 { | 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 { | |||
| 605 | color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>; | 615 | color: <?php if (strlen($d['header']['header_minicart_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['header']['header_minicart_icon_color']; ?>; | |||
| 606 | } | 616 | } | |||
| 607 | .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']; ?>;} | 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']; ?>;} | |||
| 608 | } | 618 | } | |||
| 609 | <?php | 619 | <?php | |||
| 610 | } | 620 | } | |||
| 611 | } | 621 | } | |||
| 612 | if(isset($d['footer']['custom']) && $d['footer']['custom']==1){ | 622 | if(isset($d['footer']['custom']) && $d['footer']['custom']==1){ | |||
| 613 | if(isset($d['footer']['footer_top_bgcolor']) && $d['footer']['footer_top_bgcolor']){ | 623 | if(isset($d['footer']['footer_top_bgcolor']) && $d['footer']['footer_top_bgcolor']){ | |||
| 614 | ?> | 624 | ?> | |||
| 615 | .footer-top{ | 625 | .footer-top{ | |||
| 616 | background-color:<?php if (strlen($d['footer']['footer_top_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_bgcolor']; ?>; | 626 | background-color:<?php if (strlen($d['footer']['footer_top_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_bgcolor']; ?>; | |||
| 617 | } | 627 | } | |||
| 618 | <?php | 628 | <?php | |||
| 619 | } | 629 | } | |||
| 620 | if(isset($d['footer']['footer_top_color']) && $d['footer']['footer_top_color']){ | 630 | if(isset($d['footer']['footer_top_color']) && $d['footer']['footer_top_color']){ | |||
| 621 | ?> | 631 | ?> | |||
| 622 | .footer-top{ | 632 | .footer-top{ | |||
| 623 | color:<?php if (strlen($d['footer']['footer_top_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_color']; ?>; | 633 | color:<?php if (strlen($d['footer']['footer_top_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_color']; ?>; | |||
| 624 | } | 634 | } | |||
| 625 | <?php | 635 | <?php | |||
| 626 | } | 636 | } | |||
| 627 | if(isset($d['footer']['footer_top_link_color']) && $d['footer']['footer_top_link_color']){ | 637 | if(isset($d['footer']['footer_top_link_color']) && $d['footer']['footer_top_link_color']){ | |||
| 628 | ?> | 638 | ?> | |||
| 629 | .footer-top a { | 639 | .footer-top a { | |||
| 630 | color:<?php if (strlen($d['footer']['footer_top_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_color']; ?>; | 640 | color:<?php if (strlen($d['footer']['footer_top_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_color']; ?>; | |||
| 631 | } | 641 | } | |||
| 632 | <?php | 642 | <?php | |||
| 633 | } | 643 | } | |||
| 634 | if(isset($d['footer']['footer_top_link_hover_color']) && $d['footer']['footer_top_link_hover_color']){ | 644 | if(isset($d['footer']['footer_top_link_hover_color']) && $d['footer']['footer_top_link_hover_color']){ | |||
| 635 | ?> | 645 | ?> | |||
| 636 | .footer-top a:hover{ | 646 | .footer-top a:hover{ | |||
| 637 | color:<?php if (strlen($d['footer']['footer_top_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_hover_color']; ?>; | 647 | color:<?php if (strlen($d['footer']['footer_top_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_top_link_hover_color']; ?>; | |||
| 638 | } | 648 | } | |||
| 639 | <?php | 649 | <?php | |||
| 640 | } | 650 | } | |||
| 641 | if(isset($d['footer']['footer_middle_bgcolor']) && $d['footer']['footer_middle_bgcolor']){ | 651 | if(isset($d['footer']['footer_middle_bgcolor']) && $d['footer']['footer_middle_bgcolor']){ | |||
| 642 | ?> | 652 | ?> | |||
| 643 | .footer-middle{ | 653 | .footer-middle{ | |||
| 644 | background-color:<?php if (strlen($d['footer']['footer_middle_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_bgcolor']; ?>; | 654 | background-color:<?php if (strlen($d['footer']['footer_middle_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_bgcolor']; ?>; | |||
| 645 | } | 655 | } | |||
| 646 | <?php | 656 | <?php | |||
| 647 | } | 657 | } | |||
| 648 | if(isset($d['footer']['footer_middle_color']) && $d['footer']['footer_middle_color']){ | 658 | if(isset($d['footer']['footer_middle_color']) && $d['footer']['footer_middle_color']){ | |||
| 649 | ?> | 659 | ?> | |||
| 650 | .footer-middle, .footer-middle p{ | 660 | .footer-middle, .footer-middle p{ | |||
| 651 | color:<?php if (strlen($d['footer']['footer_middle_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_color']; ?>; | 661 | color:<?php if (strlen($d['footer']['footer_middle_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_color']; ?>; | |||
| 652 | } | 662 | } | |||
| 653 | <?php | 663 | <?php | |||
| 654 | } | 664 | } | |||
| 655 | if(isset($d['footer']['footer_middle_link_color']) && $d['footer']['footer_middle_link_color']){ | 665 | if(isset($d['footer']['footer_middle_link_color']) && $d['footer']['footer_middle_link_color']){ | |||
| 656 | ?> | 666 | ?> | |||
| 657 | .footer-middle a{ | 667 | .footer-middle a{ | |||
| 658 | color:<?php if (strlen($d['footer']['footer_middle_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_color']; ?>; | 668 | color:<?php if (strlen($d['footer']['footer_middle_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_color']; ?>; | |||
| 659 | } | 669 | } | |||
| 660 | <?php | 670 | <?php | |||
| 661 | } | 671 | } | |||
| 662 | if(isset($d['footer']['footer_middle_link_hover_color']) && $d['footer']['footer_middle_link_hover_color']){ | 672 | if(isset($d['footer']['footer_middle_link_hover_color']) && $d['footer']['footer_middle_link_hover_color']){ | |||
| 663 | ?> | 673 | ?> | |||
| 664 | .footer-middle a:hover,.footer .widget .tagcloud a:hover{ | 674 | .footer-middle a:hover,.footer .widget .tagcloud a:hover{ | |||
| 665 | color:<?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>; | 675 | color:<?php if (strlen($d['footer']['footer_middle_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_link_hover_color']; ?>; | |||
| 666 | } | 676 | } | |||
| 667 | .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']; ?>;} | 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']; ?>;} | |||
| 668 | <?php | 678 | <?php | |||
| 669 | } | 679 | } | |||
| 670 | if(isset($d['footer']['footer_middle_title_color']) && $d['footer']['footer_middle_title_color']){ | 680 | if(isset($d['footer']['footer_middle_title_color']) && $d['footer']['footer_middle_title_color']){ | |||
| 671 | ?> | 681 | ?> | |||
| 672 | .footer-middle .block .block-title strong, .footer .widget-title,.footer .contact-details strong{ | 682 | .footer-middle .block .block-title strong, .footer .widget-title,.footer .contact-details strong{ | |||
| 673 | color:<?php if (strlen($d['footer']['footer_middle_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_title_color']; ?>; | 683 | color:<?php if (strlen($d['footer']['footer_middle_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_title_color']; ?>; | |||
| 674 | } | 684 | } | |||
| 675 | <?php | 685 | <?php | |||
| 676 | } | 686 | } | |||
| 677 | if(isset($d['footer']['footer_middle_links_icon_color']) && $d['footer']['footer_middle_links_icon_color']){ | 687 | if(isset($d['footer']['footer_middle_links_icon_color']) && $d['footer']['footer_middle_links_icon_color']){ | |||
| 678 | ?> | 688 | ?> | |||
| 679 | .footer-middle [class^="porto-icon-"].theme-color, .footer-middle [class*=" porto-icon-"].theme-color{ | 689 | .footer-middle [class^="porto-icon-"].theme-color, .footer-middle [class*=" porto-icon-"].theme-color{ | |||
| 680 | color:<?php if (strlen($d['footer']['footer_middle_links_icon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_links_icon_color']; ?> !important; | 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; | |||
| 681 | } | 691 | } | |||
| 682 | <?php | 692 | <?php | |||
| 683 | } | 693 | } | |||
| 684 | if(isset($d['footer']['footer_middle_2_bgcolor']) && $d['footer']['footer_middle_2_bgcolor']){ | 694 | if(isset($d['footer']['footer_middle_2_bgcolor']) && $d['footer']['footer_middle_2_bgcolor']){ | |||
| 685 | ?> | 695 | ?> | |||
| 686 | .footer-middle-2{ | 696 | .footer-middle-2{ | |||
| 687 | background-color:<?php if (strlen($d['footer']['footer_middle_2_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_bgcolor']; ?>; | 697 | background-color:<?php if (strlen($d['footer']['footer_middle_2_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_bgcolor']; ?>; | |||
| 688 | } | 698 | } | |||
| 689 | <?php | 699 | <?php | |||
| 690 | } | 700 | } | |||
| 691 | if(isset($d['footer']['footer_middle_2_color']) && $d['footer']['footer_middle_2_color']){ | 701 | if(isset($d['footer']['footer_middle_2_color']) && $d['footer']['footer_middle_2_color']){ | |||
| 692 | ?> | 702 | ?> | |||
| 693 | .footer-middle-2, .footer-middle-2 p{ | 703 | .footer-middle-2, .footer-middle-2 p{ | |||
| 694 | color:<?php if (strlen($d['footer']['footer_middle_2_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_color']; ?>; | 704 | color:<?php if (strlen($d['footer']['footer_middle_2_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_color']; ?>; | |||
| 695 | } | 705 | } | |||
| 696 | <?php | 706 | <?php | |||
| 697 | } | 707 | } | |||
| 698 | if(isset($d['footer']['footer_middle_2_link_color']) && $d['footer']['footer_middle_2_link_color']){ | 708 | if(isset($d['footer']['footer_middle_2_link_color']) && $d['footer']['footer_middle_2_link_color']){ | |||
| 699 | ?> | 709 | ?> | |||
| 700 | .footer-middle-2 a{ | 710 | .footer-middle-2 a{ | |||
| 701 | color:<?php if (strlen($d['footer']['footer_middle_2_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_color']; ?>; | 711 | color:<?php if (strlen($d['footer']['footer_middle_2_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_link_color']; ?>; | |||
| 702 | } | 712 | } | |||
| 703 | <?php | 713 | <?php | |||
| 704 | } | 714 | } | |||
| 705 | if(isset($d['footer']['footer_middle_2_link_hover_color']) && $d['footer']['footer_middle_2_link_hover_color']){ | 715 | if(isset($d['footer']['footer_middle_2_link_hover_color']) && $d['footer']['footer_middle_2_link_hover_color']){ | |||
| 706 | ?> | 716 | ?> | |||
| 707 | .footer-middle-2 a:hover{ | 717 | .footer-middle-2 a:hover{ | |||
| 708 | 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']; ?>; | 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']; ?>; | |||
| 709 | } | 719 | } | |||
| 710 | <?php | 720 | <?php | |||
| 711 | } | 721 | } | |||
| 712 | if(isset($d['footer']['footer_middle_2_title_color']) && $d['footer']['footer_middle_2_title_color']){ | 722 | if(isset($d['footer']['footer_middle_2_title_color']) && $d['footer']['footer_middle_2_title_color']){ | |||
| 713 | ?> | 723 | ?> | |||
| 714 | .footer-middle-2 .block .block-title strong{ | 724 | .footer-middle-2 .block .block-title strong{ | |||
| 715 | color:<?php if (strlen($d['footer']['footer_middle_2_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_title_color']; ?>; | 725 | color:<?php if (strlen($d['footer']['footer_middle_2_title_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_2_title_color']; ?>; | |||
| 716 | } | 726 | } | |||
| 717 | <?php | 727 | <?php | |||
| 718 | } | 728 | } | |||
| 719 | if(isset($d['footer']['footer_middle_2_links_icon_color']) && $d['footer']['footer_middle_2_links_icon_color']){ | 729 | if(isset($d['footer']['footer_middle_2_links_icon_color']) && $d['footer']['footer_middle_2_links_icon_color']){ | |||
| 720 | ?> | 730 | ?> | |||
| 721 | .footer-middle-2 [class^="porto-icon-"].theme-color, .footer-middle-2 [class*=" porto-icon-"].theme-color{ | 731 | .footer-middle-2 [class^="porto-icon-"].theme-color, .footer-middle-2 [class*=" porto-icon-"].theme-color{ | |||
| 722 | 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; | 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; | |||
| 723 | } | 733 | } | |||
| 724 | <?php | 734 | <?php | |||
| 725 | } | 735 | } | |||
| 726 | if(isset($d['footer']['footer_middle_ribbon_bgcolor']) && $d['footer']['footer_middle_ribbon_bgcolor']){ | 736 | if(isset($d['footer']['footer_middle_ribbon_bgcolor']) && $d['footer']['footer_middle_ribbon_bgcolor']){ | |||
| 727 | ?> | 737 | ?> | |||
| 728 | .footer .footer-ribbon{ | 738 | .footer .footer-ribbon{ | |||
| 729 | background-color:<?php if (strlen($d['footer']['footer_middle_ribbon_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_bgcolor']; ?>; | 739 | background-color:<?php if (strlen($d['footer']['footer_middle_ribbon_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_bgcolor']; ?>; | |||
| 730 | } | 740 | } | |||
| 731 | <?php | 741 | <?php | |||
| 732 | } | 742 | } | |||
| 733 | if(isset($d['footer']['footer_middle_ribbon_shadow_color']) && $d['footer']['footer_middle_ribbon_shadow_color']){ | 743 | if(isset($d['footer']['footer_middle_ribbon_shadow_color']) && $d['footer']['footer_middle_ribbon_shadow_color']){ | |||
| 734 | ?> | 744 | ?> | |||
| 735 | .footer .footer-ribbon:before{ | 745 | .footer .footer-ribbon:before{ | |||
| 736 | 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']; ?>; | 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']; ?>; | |||
| 737 | 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']; ?>; | 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']; ?>; | |||
| 738 | } | 748 | } | |||
| 739 | <?php | 749 | <?php | |||
| 740 | } | 750 | } | |||
| 741 | if(isset($d['footer']['footer_middle_ribbon_color']) && $d['footer']['footer_middle_ribbon_color']){ | 751 | if(isset($d['footer']['footer_middle_ribbon_color']) && $d['footer']['footer_middle_ribbon_color']){ | |||
| 742 | ?> | 752 | ?> | |||
| 743 | .footer-ribbon span{ | 753 | .footer-ribbon span{ | |||
| 744 | color:<?php if (strlen($d['footer']['footer_middle_ribbon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_color']; ?>; | 754 | color:<?php if (strlen($d['footer']['footer_middle_ribbon_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_middle_ribbon_color']; ?>; | |||
| 745 | } | 755 | } | |||
| 746 | <?php | 756 | <?php | |||
| 747 | } | 757 | } | |||
| 748 | if(isset($d['footer']['footer_bottom_bgcolor']) && $d['footer']['footer_bottom_bgcolor']){ | 758 | if(isset($d['footer']['footer_bottom_bgcolor']) && $d['footer']['footer_bottom_bgcolor']){ | |||
| 749 | ?> | 759 | ?> | |||
| 750 | .footer-bottom{ | 760 | .footer-bottom{ | |||
| 751 | background-color:<?php if (strlen($d['footer']['footer_bottom_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_bgcolor']; ?>; | 761 | background-color:<?php if (strlen($d['footer']['footer_bottom_bgcolor']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_bgcolor']; ?>; | |||
| 752 | } | 762 | } | |||
| 753 | <?php | 763 | <?php | |||
| 754 | } | 764 | } | |||
| 755 | if(isset($d['footer']['footer_bottom_color']) && $d['footer']['footer_bottom_color']){ | 765 | if(isset($d['footer']['footer_bottom_color']) && $d['footer']['footer_bottom_color']){ | |||
| 756 | ?> | 766 | ?> | |||
| 757 | .footer-bottom, .footer-bottom p{ | 767 | .footer-bottom, .footer-bottom p{ | |||
| 758 | color:<?php if (strlen($d['footer']['footer_bottom_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_color']; ?>; | 768 | color:<?php if (strlen($d['footer']['footer_bottom_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_color']; ?>; | |||
| 759 | } | 769 | } | |||
| 760 | <?php | 770 | <?php | |||
| 761 | } | 771 | } | |||
| 762 | if(isset($d['footer']['footer_bottom_link_color']) && $d['footer']['footer_bottom_link_color']){ | 772 | if(isset($d['footer']['footer_bottom_link_color']) && $d['footer']['footer_bottom_link_color']){ | |||
| 763 | ?> | 773 | ?> | |||
| 764 | .footer-bottom a{ | 774 | .footer-bottom a{ | |||
| 765 | color:<?php if (strlen($d['footer']['footer_bottom_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_color']; ?>; | 775 | color:<?php if (strlen($d['footer']['footer_bottom_link_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_color']; ?>; | |||
| 766 | } | 776 | } | |||
| 767 | <?php | 777 | <?php | |||
| 768 | } | 778 | } | |||
| 769 | if(isset($d['footer']['footer_bottom_link_hover_color']) && $d['footer']['footer_bottom_link_hover_color']){ | 779 | if(isset($d['footer']['footer_bottom_link_hover_color']) && $d['footer']['footer_bottom_link_hover_color']){ | |||
| 770 | ?> | 780 | ?> | |||
| 771 | .footer-bottom a:hover{ | 781 | .footer-bottom a:hover{ | |||
| 772 | color:<?php if (strlen($d['footer']['footer_bottom_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_hover_color']; ?>; | 782 | color:<?php if (strlen($d['footer']['footer_bottom_link_hover_color']) == 6): echo "#"; endif; ?><?php echo $d['footer']['footer_bottom_link_hover_color']; ?>; | |||
| 773 | } | 783 | } | |||
| 774 | <?php | 784 | <?php | |||
| 775 | } | 785 | } | |||
| 776 | } | 786 | } | |||
| 777 | ?> | 787 | ?> |
Araxis Merge (but not the data content of this report) is Copyright © 1993–2019 Araxis Ltd (www.araxis.com). All rights reserved.