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