topbar_static_css(); $parse_css .= $this->header_static_css(); $parse_css .= $this->page_static_css(); $parse_css .= $this->page_boxed_static_css(); $parse_css .= $this->page_header_static_css(); $parse_css .= $this->footer_static_css(); $parse_css .= $this->colors_static_css(); $parse_css .= $this->typography_static_css(); $parse_css .= $this->mobile_header_static_css(); $parse_css .= $this->mobile_catalog_page_header_static_css(); $parse_css .= $this->mobile_footer_static_css(); $parse_css .= $this->preloader_static_css(); wp_add_inline_style( 'razzi', apply_filters( 'razzi_inline_style', $parse_css ) ); } /** * Get topbar style data * * @since 1.0.0 * * @return string */ protected function topbar_static_css() { $static_css = ''; // Topbar height. if ( ( $height = Helper::get_option( 'topbar_height' ) ) != 45 ) { $static_css .= '.topbar {height: ' . intval( $height ) . 'px}'; } // Topbar if ( intval( Helper::get_option( 'topbar_bg_custom_color' ) ) ) { if ( $top_text_color = Helper::get_option( 'topbar_text_color' ) ) { $static_css .= '.topbar { --rz-color-dark:' . $top_text_color . ' ;--rz-icon-color: ' . $top_text_color . ' }'; } if ( Helper::get_option( 'topbar_text_color_hover' ) ) { $static_css .= '.topbar { --rz-color-primary: ' . Helper::get_option( 'topbar_text_color_hover' ) . ' }'; $static_css .= '.topbar { --rz-color-hover-primary: ' . Helper::get_option( 'topbar_text_color_hover' ) . ' }'; } if ( $topbar_bg_color = Helper::get_option( 'topbar_bg_color' ) ) { $static_css .= '.topbar { background-color: ' . $topbar_bg_color . ' }'; } if ( $primary_menu_color = Helper::get_option( 'topbar_primary_menu_color' ) ) { $static_css .= '.topbar .primary-navigation { --rz-color-dark:' . $primary_menu_color . ' ;--rz-icon-color: ' . $primary_menu_color . ' ;--rz-header-color-dark: ' . $primary_menu_color . ' ; }'; } if ( Helper::get_option( 'topbar_primary_menu_hover_color' ) ) { $static_css .= '.topbar .primary-navigation { --rz-color-hover-primary: ' . Helper::get_option( 'topbar_primary_menu_hover_color' ) . ' }'; } } if ( intval( Helper::get_option( 'topbar_bg_border' ) ) ) { $static_css .= '.topbar { border-bottom: 1px solid transparent }'; if ( $topbar_border_color = Helper::get_option( 'topbar_bg_border_color' ) ) { $static_css .= '.topbar { border-color: ' . $topbar_border_color . ' }'; } } return $static_css; } /** * Get page style data * * @since 1.0.0 * * @return string */ protected function page_static_css() { $static_css = ''; if ( $top = get_post_meta( Helper::get_post_ID(), 'rz_content_top_padding', true ) ) { $static_css .= '.site-content.custom-top-spacing { padding-top: ' . $top . 'px; }'; } if ( $bottom = get_post_meta( Helper::get_post_ID(), 'rz_content_bottom_padding', true ) ) { $static_css .= '.site-content.custom-bottom-spacing{ padding-bottom: ' . $bottom . 'px; }'; } // Header Bottom Margin Bottom if ( intval( Helper::get_option( 'header_bottom_spacing' ) ) != 20 ) { $static_css .= '.header-v4 .header-bottom { margin-bottom: ' . intval( Helper::get_option( 'header_bottom_spacing' ) ) . 'px; }'; } $rz_header_bottom_spacing_bottom = get_post_meta( Helper::get_post_ID(), 'rz_header_bottom_spacing_bottom', true ); $rz_header_v4_bottom_spacing_bottom = get_post_meta( Helper::get_post_ID(), 'rz_header_v4_bottom_spacing_bottom', true ); if ( $rz_header_v4_bottom_spacing_bottom == 'custom' && $rz_header_bottom_spacing_bottom ) { $static_css .= '.header-v4 .site-header .header-bottom { margin-bottom: ' . intval( $rz_header_bottom_spacing_bottom ) . 'px; }'; } $rz_department_menu_display_spacing = get_post_meta( Helper::get_post_ID(), 'rz_department_menu_display_spacing', true ); $rz_department_menu_display = get_post_meta( Helper::get_post_ID(), 'rz_department_menu_display', true ); if ( $rz_department_menu_display == 'onpageload' && $rz_department_menu_display_spacing ) { $static_css .= '.header-department.show_menu_department .department-content { padding-top: ' . intval( $rz_department_menu_display_spacing ) . 'px; }'; } return $static_css; } /** * Get header style data * * @since 1.0.0 * * @return string */ protected function header_static_css() { $static_css = ''; // Logo $dimension = Helper::get_option( 'logo_dimension' ); if ( ! empty( $dimension ) ) { $logo_width = $dimension['width']; $logo_height= $dimension['height']; $logo_width = is_numeric( $logo_width ) ? $logo_width .'px' : $logo_width; $style = $logo_width ? 'width: ' . $logo_width . ';' : ''; $logo_height = is_numeric( $logo_height ) ? $logo_height .'px' : $logo_height; $style .= $logo_height ? 'height: ' . $logo_height . ';' : ''; $static_css .= '.site-header .logo .logo-image { '. $style .' }'; } // Header Main Height if ( Helper::get_option( 'header_main_height' ) != 90 && Helper::get_header_layout() != 'v6' ) { $static_css .= '#site-header .header-main { height: ' . intval( Helper::get_option( 'header_main_height' ) ) . 'px; }'; } // Header Main Sticky Height if ( Helper::get_option( 'sticky_header_main_height' ) != 90 && Helper::get_header_layout() != 'v6' ) { $static_css .= '.header-sticky #site-header.minimized .header-main{ height: ' . intval( Helper::get_option( 'sticky_header_main_height' ) ) . 'px; }'; } // Header Bottom Height if ( Helper::get_option( 'header_bottom_height' ) != 50 ) { $static_css .= '#site-header .header-bottom { height: ' . intval( Helper::get_option( 'header_bottom_height' ) ) . 'px; }'; } // Header Bottom Sticky Height if ( Helper::get_option( 'sticky_header_bottom_height' ) != 50 ) { $static_css .= '.header-sticky #site-header.minimized .header-bottom{ height: ' . intval( Helper::get_option( 'sticky_header_bottom_height' ) ) . 'px; }'; } // Mobile Header Height if ( Helper::get_option( 'mobile_header_height' ) != 60 ) { $static_css .= '.header-mobile { height: ' . intval( Helper::get_option( 'mobile_header_height' ) ) . 'px; }'; } // Header Background Main if ( intval( Helper::get_option( 'header_main_background' ) ) ) { $header_main_bg_color = Helper::get_option( 'header_main_background_color' ); $header_main_text_color = Helper::get_option( 'header_main_background_text_color' ); $header_main_text_color_hover = Helper::get_option( 'header_main_background_text_color_hover' ); $header_main_border_color = Helper::get_option( 'header_main_background_border_color' ); if ( $header_main_bg_color ) { $static_css .= 'body:not(.header-transparent) .header-main, body:not(.header-transparent) .header-mobile { background-color: ' . esc_attr( $header_main_bg_color ) . ' }'; $static_css .= '.header-sticky:not(.header-v6) .site-header.minimized { box-shadow: none; }'; if ( Helper::get_header_layout() == 'v6' ) { $static_css .= 'body:not(.header-transparent).header-v6 .header-main { --rz-background-color-light: ' . esc_attr( $header_main_bg_color ) . ' }'; } } if ( $header_main_text_color ) { $static_css .= 'body:not(.header-transparent) .header-main, body:not(.header-transparent) .header-mobile { --rz-header-color-dark: ' . esc_attr( $header_main_text_color ) . '; --rz-stroke-svg-dark: ' . esc_attr( $header_main_text_color ) . ' }'; if ( Helper::get_header_layout() == 'v6' ) { $static_css .= 'body:not(.header-transparent).header-v6 .header-main .socials-menu li a { color: ' . esc_attr( $header_main_text_color ) . ' }'; } } if ( $header_main_text_color_hover ) { $static_css .= 'body:not(.header-transparent) .header-main { --rz-color-hover-primary: ' . esc_attr( $header_main_text_color_hover ) . ' }'; } if ( $header_main_border_color ) { $static_css .= 'body:not(.header-transparent) .header-main { border-color: ' . esc_attr( $header_main_border_color ) . ' }'; } } // Header Background Bottom if ( intval( Helper::get_option( 'header_bottom_background' ) ) ) { $header_bottom_bg_color = Helper::get_option( 'header_bottom_background_color' ); $header_bottom_text_color = Helper::get_option( 'header_bottom_background_text_color' ); $header_bottom_text_color_hover = Helper::get_option( 'header_bottom_background_text_color_hover' ); $header_bottom_border_color = Helper::get_option( 'header_bottom_background_border_color' ); if ( $header_bottom_bg_color ) { $static_css .= 'body:not(.header-transparent) .header-bottom { background-color: ' . esc_attr( $header_bottom_bg_color ) . ' }'; if ( Helper::get_header_layout() == 'v3' ) { $static_css .= 'body:not(.header-transparent).header-v3 .header-bottom { --rz-header-background-color-dark: ' . esc_attr( $header_bottom_bg_color ) . ' }'; } } if ( $header_bottom_text_color ) { $static_css .= 'body:not(.header-transparent) .header-bottom { --rz-header-color-dark: ' . esc_attr( $header_bottom_text_color ) . '; --rz-stroke-svg-dark: ' . esc_attr( $header_bottom_text_color ) . ' }'; if ( Helper::get_header_layout() == 'v3' ) { $static_css .= 'body:not(.header-transparent).header-v3 .header-bottom .main-navigation > ul > li > a { --rz-header-color-dark: ' . esc_attr( $header_bottom_text_color ) . ' }'; } } if ( $header_bottom_text_color_hover ) { $static_css .= 'body:not(.header-transparent) .header-bottom { --rz-color-hover-primary: ' . esc_attr( $header_bottom_text_color_hover ) . ' }'; } if ( $header_bottom_border_color ) { $static_css .= 'body:not(.header-transparent) .header-bottom { border-color: ' . esc_attr( $header_bottom_border_color ) . ' }'; } } // Header Cart if ( intval( Helper::get_option( 'header_cart_custom_color' ) ) ) { $header_cart_bg = Helper::get_option( 'header_cart_background_color' ); $header_cart_text_color = Helper::get_option( 'header_cart_text_color' ); $header_cart_border_color = Helper::get_option( 'header_cart_border_color' ); if ( $header_cart_bg ) { $static_css .= '.header-cart .counter { --rz-background-color-primary: ' . esc_attr( $header_cart_bg ) . ' }'; } if ( $header_cart_text_color ) { $static_css .= '.header-cart .counter { --rz-background-text-color-primary: ' . esc_attr( $header_cart_text_color ) . ' }'; } if ( $header_cart_border_color ) { $static_css .= '.header-cart .counter { --rz-border-color-lighter: ' . esc_attr( $header_cart_border_color ) . ' }'; } } // Header Wishlist if ( intval( Helper::get_option( 'header_wishlist_counter' ) ) && intval( Helper::get_option( 'header_wishlist_custom_color' ) ) ) { $header_wishlist_bg = Helper::get_option( 'header_wishlist_background_color' ); $header_wishlist_text_color = Helper::get_option( 'header_wishlist_text_color' ); if ( $header_wishlist_bg ) { $static_css .= '.header-wishlist .counter { --rz-background-color-primary: ' . esc_attr( $header_wishlist_bg ) . ' }'; } if ( $header_wishlist_text_color ) { $static_css .= '.header-wishlist .counter { --rz-background-text-color-primary: ' . esc_attr( $header_wishlist_text_color ) . ' }'; } } // Header Search if ( intval( Helper::get_option( 'header_search_custom_color' ) ) ) { $header_search_bg = Helper::get_option( 'header_search_background_color' ); $header_search_text_color = Helper::get_option( 'header_search_text_color' ); $header_search_button_color = Helper::get_option( 'header_search_button_color' ); $header_search_border_color = Helper::get_option( 'header_search_border_color' ); $header_search_border_hover = Helper::get_option( 'header_search_border_color_hover' ); $header_search_border_item_color = Helper::get_option( 'header_search_border_item_color' ); $header_search_bg_button_color = Helper::get_option( 'header_search_bg_button_color' ); $header_search_border_button_color = Helper::get_option( 'header_search_border_button_color' ); if ( $header_search_bg ) { $static_css .= '.header-search.search-form-type .search-field { background-color: ' . esc_attr( $header_search_bg ) . '}'; $static_css .= '.header-search.search-form-type .product-cat-label { background-color: ' . esc_attr( $header_search_bg ) . '}'; $static_css .= '#site-header .header-search .search-field, #site-header .aws-container .aws-search-form .aws-search-field { background-color: ' . esc_attr( $header_search_bg ) . '}'; } if ( $header_search_text_color ) { $static_css .= '.header-search.form-type-boxed .search-field, #site-header .aws-container .aws-search-form .aws-search-field { --rz-color-placeholder: ' . esc_attr( $header_search_text_color ) . ' }'; $static_css .= '#site-header .header-search .search-field { --rz-header-color-darker: ' . esc_attr( $header_search_text_color ) . ' }'; $static_css .= '#site-header .header-search .search-field::placeholder { --rz-color-placeholder: ' . esc_attr( $header_search_text_color ) . ' }'; $static_css .= '.header-search.search-type-form-cat .product-cat-label { --rz-header-text-color-gray: ' . esc_attr( $header_search_text_color ) . ' }'; $static_css .= '#site-header .aws-container .aws-search-form .aws-search-field { color: ' . esc_attr( $header_search_text_color ) . ' }'; } if ( $header_search_button_color ) { $static_css .= '#site-header .header-search .search-submit, #site-header .aws-container .aws-search-form .aws-search-btn_icon { color: ' . esc_attr( $header_search_button_color ) . '}'; $static_css .= '#site-header .header-search.ra-search-form .search-submit .razzi-svg-icon, .site-header .header-search.form-type-full-width .search-submit .razzi-svg-icon { color: ' . esc_attr( $header_search_button_color ) . '}'; } if ( $header_search_border_color ) { $static_css .= '.header-search .form-search, #site-header .aws-container .aws-search-form .aws-search-field { border-color: ' . esc_attr( $header_search_border_color ) . '; --rz-border-color: ' . esc_attr( $header_search_border_color ) . '; --rz-border-color-light: ' . esc_attr( $header_search_border_color ) . '; --rz-border-color-dark: ' . esc_attr( $header_search_border_color ) . ';}'; $static_css .= '.site-header .header-search.form-type-boxed .search-field { border-color: ' . esc_attr( $header_search_border_color ) . ';}'; } if ( $header_search_border_hover ) { $static_css .= '.header-search.search-type-form-cat .search-field:focus, #site-header .aws-container .aws-search-form .aws-search-field:focus { border-color: ' . esc_attr( $header_search_border_hover ) . '; --rz-border-color-dark: ' . esc_attr( $header_search_border_hover ) . ';}'; $static_css .= '.header-search .border-color-dark { --rz-border-color-dark: ' . esc_attr( $header_search_border_hover ) . ';}'; } if ( $header_search_border_item_color ) { $static_css .= '.site-header .header-search.search-type-form-cat .product-cat-label { border-left-color: ' . esc_attr( $header_search_border_item_color ) . '; border-right-color: ' . esc_attr( $header_search_border_item_color ) . '}'; $static_css .= '.site-header .header-search.search-type-form-cat .search-submit { border-right-color: ' . esc_attr( $header_search_border_item_color ) . ';}'; $static_css .= '.border-color-dark { --rz-border-color-dark: ' . esc_attr( $header_search_border_item_color ) . ' !important;}'; } if (Helper::get_option( 'header_search_style' ) == 'form-cat') { if ( $header_search_bg_button_color ) { $static_css .= '#site-header .header-search .form-search .search-submit, #site-header .aws-container .aws-search-form .aws-form-btn { background-color: ' . esc_attr( $header_search_bg_button_color ) . ';}'; } if ( $header_search_border_button_color ) { $static_css .= '#site-header .header-search .form-search .search-submit { --rz-border-color-light: ' . esc_attr( $header_search_border_button_color ) . ';}'; $static_css .= '#site-header .aws-container .aws-search-form .aws-form-btn { border-color: ' . esc_attr( $header_search_border_button_color ) . ';}'; } } } // Header Department if ( Helper::get_option( 'header_department_height_enable' ) ) { $static_css .= '.header-department__height .department-content .nav-menu { max-height: ' . intval( Helper::get_option( 'header_department_height' ) ) . 'px; }'; } if ( intval( Helper::get_option( 'header_department_custom_color' ) ) ) { $header_department_bg = Helper::get_option( 'header_department_background_color' ); $header_department_text_color = Helper::get_option( 'header_department_text_color' ); $header_department_border_color = Helper::get_option( 'header_department_border_color' ); if ( $header_department_bg ) { $static_css .= '.header-department { --rz-header-background-color-dark: ' . esc_attr( $header_department_bg ) . ' }'; } if ( $header_department_text_color ) { $static_css .= '.header-department { --rz-header-color-light: ' . esc_attr( $header_department_text_color ) . ' }'; } if ( $header_department_border_color ) { $static_css .= '.header-department { border-color: ' . esc_attr( $header_department_border_color ) . ' }'; } } // Header Campaign $campaign_height = Helper::get_option( 'campaign_bar_height' ); if ( ! empty( $campaign_height ) ) { $static_css .= '@media (min-width: 767px) {#campaign-bar { height: ' . $campaign_height . 'px;}}'; } // Position Sticky if ( intval( Helper::get_option( 'header_sticky' ) ) ) { $sticky_height = Helper::get_option( 'sticky_header_main_height' ); $header_sticky_el = (array) Helper::get_option( 'header_sticky_el' ); if ( in_array( 'header_bottom', $header_sticky_el ) ) { $sticky_height = Helper::get_option( 'sticky_header_bottom_height' ); } if ( in_array( 'header_main', $header_sticky_el ) && in_array( 'header_bottom', $header_sticky_el ) ) { $sticky_height = Helper::get_option( 'sticky_header_main_height' ) + Helper::get_option( 'sticky_header_bottom_height' ); } $static_css .= '.header-sticky.woocommerce-cart .cart-collaterals { top: ' . ( $sticky_height + 50 ) . 'px; }'; $static_css .= '.header-sticky.woocommerce-cart.admin-bar .cart-collaterals { top: ' . ( $sticky_height + 82 ) . 'px; }'; $static_css .= '.header-sticky.single-product div.product.layout-v5 .entry-summary { top: ' . ( $sticky_height + 30 ) . 'px; }'; $static_css .= '.header-sticky.single-product.admin-bar div.product.layout-v5 .entry-summary { top: ' . ( $sticky_height + 62 ) . 'px; }'; } // Primary menu Style if( Helper::get_option('header_type') == 'default' && Helper::get_option('header_layout') == 'v9' ) { $static_css .= '.header-v9 .main-navigation .nav-menu { justify-content: ' . Helper::get_option('primary_menu_style') . '; }'; } return $static_css; } /** * Get page header style data * * @since 1.0.0 * * @return string */ protected function page_header_static_css() { $static_css = ''; if( Helper::get_option('page_header_layout') == 'layout-2' ) { if ( ( $color = Helper::get_option( 'page_header_text_color' ) ) && $color != '' ) { $static_css .= '.page-header--layout-2 {--rz-color-dark: ' . $color . '}'; } if ( ( $color = Helper::get_option( 'page_header_bread_color' ) ) && $color != '' ) { $static_css .= '.page-header--layout-2 .site-breadcrumb {color: ' . $color . '}'; } if( Helper::get_option( 'page_header_background_overlay' ) ) { $static_css .= '.page-header--layout-2 .featured-image::before {background-color: ' . Helper::get_option( 'page_header_background_overlay' ) . '}'; } } if ( \Razzi\Helper::is_blog() ) { $padding_top = Helper::get_option( 'page_header_blog_padding_top' ); $padding_bottom = Helper::get_option( 'page_header_blog_padding_bottom' ); } else { $padding_top = Helper::get_option( 'page_header_padding_top' ); $padding_bottom = Helper::get_option( 'page_header_padding_bottom' ); } $post_id = get_the_ID(); if ( \Razzi\Helper::is_blog() ) { $post_id = intval( get_option( 'page_for_posts' ) ); } $padding_top_inline = get_post_meta( $post_id, 'rz_page_header_top_padding', true ); $padding_bottom_inline = get_post_meta( $post_id, 'rz_page_header_bottom_padding', true ); if ( get_post_meta( $post_id, 'rz_page_header_spacing', true ) == 'custom' ) { $padding_top = $padding_top_inline; $padding_bottom = $padding_bottom_inline; } if ( $padding_top ) { $static_css .= '#page-header.page-header--layout-1 .page-header__title { padding-top: ' . $padding_top . 'px; }'; $static_css .= '#page-header.page-header--layout-2 { padding-top: ' . $padding_top . 'px; }'; } if ( $padding_bottom ) { $static_css .= '#page-header.page-header--layout-1 .page-header__title { padding-bottom: ' . $padding_bottom . 'px; }'; $static_css .= '#page-header.page-header--layout-2 { padding-bottom: ' . $padding_bottom . 'px; }'; } return $static_css; } /** * Get footer style data * * @since 1.0.0 * * @return string */ protected function footer_static_css() { $static_css = ''; // Logo $dimension = Helper::get_option( 'footer_logo_dimension' ); if ( ! empty( $dimension ) ) { $logo_width = isset($dimension['width']) ? $dimension['width'] : ''; $logo_height= isset($dimension['height']) ? $dimension['height'] : ''; $logo_width = is_numeric( $logo_width ) ? $logo_width .'px' : $logo_width; $style = $logo_width ? 'width: ' . $logo_width . ';' : ''; $logo_height = is_numeric( $logo_height ) ? $logo_height .'px' : $logo_height; $style .= $logo_height ? 'height: ' . $logo_height . ';' : ''; $static_css .= '.footer-branding .logo-image { '. $style .' }'; } if( Helper::get_option( 'footer_background_scheme' ) == 'custom') { if ( $footer_heading_color = Helper::get_option( 'footer_bg_heading_color' ) ) { $static_css .= '.site-footer .newsletter-title, .site-footer .widget-title, .site-footer .logo .logo-text { --rz-color-lighter: ' . $footer_heading_color . ' }'; } if ( $footer_text_color = Helper::get_option( 'footer_bg_text_color' ) ) { $static_css .= '.site-footer { --rz-text-color-gray: ' . $footer_text_color . ' }'; } if ( $footer_text_color_hover = Helper::get_option( 'footer_bg_text_color_hover' ) ) { $static_css .= '.site-footer { --rz-text-color-hover: ' . $footer_text_color_hover . ' }'; } if ( $footer_bg = Helper::get_option( 'footer_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_bg = jetpack_photon_url($footer_bg); } $static_css .= '.site-footer { background-image: url(' . $footer_bg . '); }'; } if ( $footer_bg_color = Helper::get_option( 'footer_bg_color' ) ) { $static_css .= '.site-footer { background-color: ' . $footer_bg_color . ' }'; } // Newsletter if( intval(Helper::get_option( 'footer_newsletter_bg_enable' ))) { if ( $footer_newsletter_bg = Helper::get_option( 'footer_newsletter_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_newsletter_bg = jetpack_photon_url($footer_newsletter_bg); } $static_css .= '.footer-newsletter { background-image: url(' . $footer_newsletter_bg . '); }'; } if ( $footer_newsletter_bg_color = Helper::get_option( 'footer_newsletter_bg_color' ) ) { $static_css .= '.footer-newsletter { background-color: ' . $footer_newsletter_bg_color . ' }'; } if ( Helper::get_option( 'footer_newsletter_heading_color' ) ) { $static_css .= '.site-footer .newsletter-title { --rz-color-lighter: ' . Helper::get_option( 'footer_newsletter_heading_color' ) . ' }'; } if ( $nl_border_color = Helper::get_option( 'footer_newsletter_form_border_color' ) ) { $static_css .= '.footer-newsletter.layout-v2 { --rz-textbox-bg-color: ' . $nl_border_color . ' }'; } if ( $nl_text_bg_color = Helper::get_option( 'footer_newsletter_text_field_bgcolor' ) ) { $static_css .= '.footer-newsletter.layout-v1 { --rz-textbox-bg-color: ' . $nl_text_bg_color . ' }'; } if ( $nl_text_border_color = Helper::get_option( 'footer_newsletter_text_field_border_color' ) ) { $static_css .= '.footer-newsletter.layout-v1 {--rz-textbox-border-color: ' . $nl_text_border_color . ' }'; } if ( $nl_text_placeholder_color = Helper::get_option( 'footer_newsletter_text_field_placeholder_color' ) ) { $static_css .= '.footer-newsletter .mc4wp-form-fields { --rz-textbox-color: ' . $nl_text_placeholder_color . ' }'; } if ( $nl_text_color = Helper::get_option( 'footer_newsletter_text_field_color' ) ) { $static_css .= '.footer-newsletter { --rz-textbox-color: ' . $nl_text_color . ' }'; } if ( $nl_button_bg_color = Helper::get_option( 'footer_newsletter_submit_bg_color' ) ) { $static_css .= '.footer-newsletter.layout-v1 { --rz-button-bg-color: ' . $nl_button_bg_color . ' }'; } if ( $nl_button_color = Helper::get_option( 'footer_newsletter_submit_color' ) ) { $static_css .= '.footer-newsletter { --rz-button-color: ' . $nl_button_color . ' }'; } } // Extra if( intval(Helper::get_option( 'footer_extra_bg_enable' ))) { if ( $footer_extra_bg = Helper::get_option( 'footer_extra_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_extra_bg = jetpack_photon_url($footer_extra_bg); } $static_css .= '.footer-extra { background-image: url(' . $footer_extra_bg . '); background-size: cover; }'; } if ( $footer_extra_bg_color = Helper::get_option( 'footer_extra_bg_color' ) ) { $static_css .= '.footer-extra { background-color: ' . $footer_extra_bg_color . ' }'; } if ( Helper::get_option( 'footer_extra_text_color' ) ) { $static_css .= '.footer-extra { --rz-text-color-gray: ' . Helper::get_option( 'footer_extra_text_color' ) . ' }'; } if ( Helper::get_option( 'footer_extra_text_color_hover' ) ) { $static_css .= '.footer-extra { --rz-color-primary: ' . Helper::get_option( 'footer_extra_text_color_hover' ) . ' }'; } } // Widgets if( intval(Helper::get_option( 'footer_widgets_bg_enable' ))) { if ( $footer_widget_bg = Helper::get_option( 'footer_widget_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_widget_bg = jetpack_photon_url($footer_widget_bg); } $static_css .= '.footer-widgets { background-image: url(' . $footer_widget_bg . '); }'; } if ( Helper::get_option( 'footer_widget_bg_color' ) ) { $static_css .= '.footer-widgets { background-color: ' . Helper::get_option( 'footer_widget_bg_color' ) . ' }'; } if ( Helper::get_option( 'footer_widget_dropdown_border_color' ) ) { $static_css .= '#site-footer .footer-widgets .widget.dropdown { border-color: ' . Helper::get_option( 'footer_widget_dropdown_border_color' ) . ' }'; } if ( Helper::get_option( 'footer_widget_heading_color' ) ) { $static_css .= '.footer-widgets .widget-title, .site-footer .footer-widgets .logo-text{ --rz-color-lighter: ' . Helper::get_option( 'footer_widget_heading_color' ) . ' }'; } if ( Helper::get_option( 'footer_widget_text_color' ) ) { $static_css .= '.footer-widgets { --rz-text-color-gray: ' . Helper::get_option( 'footer_widget_text_color' ) . ' }'; } if ( Helper::get_option( 'footer_widget_text_color_hover' ) ) { $static_css .= '.footer-widgets { --rz-color-primary: ' . Helper::get_option( 'footer_widget_text_color_hover' ) . ' }'; } } if( intval(Helper::get_option( 'footer_main_bg_enable' ))) { if ( $footer_main_bg = Helper::get_option( 'footer_main_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_main_bg = jetpack_photon_url($footer_main_bg); } $static_css .= '.footer-main { background-image: url(' . $footer_main_bg . '); }'; } if ( Helper::get_option( 'footer_main_bg_color' ) ) { $static_css .= '.footer-main { background-color: ' . Helper::get_option( 'footer_main_bg_color' ) . ' }'; } if ( Helper::get_option( 'footer_main_text_color' ) ) { $static_css .= '.footer-main { --rz-text-color-gray: ' . Helper::get_option( 'footer_main_text_color' ) . ' }'; } if ( Helper::get_option( 'footer_main_text_color_hover' ) ) { $static_css .= '.footer-main { --rz-color-primary: ' . Helper::get_option( 'footer_main_text_color_hover' ) . ' }'; } } // Links if( intval(Helper::get_option( 'footer_links_bg_enable' ))) { if ( $footer_links_bg = Helper::get_option( 'footer_links_bg' ) ) { if (function_exists('jetpack_photon_url')) { $footer_links_bg = jetpack_photon_url($footer_links_bg); } $static_css .= '.footer-links { background-image: url(' . $footer_links_bg . '); }'; } if ( Helper::get_option( 'footer_links_bg_color' ) ) { $static_css .= '.footer-links { background-color: ' . Helper::get_option( 'footer_links_bg_color' ) . ' }'; } if ( Helper::get_option( 'footer_links_heading_color' ) ) { $static_css .= '.footer-links .widget-title { --rz-color-lighter: ' . Helper::get_option( 'footer_links_heading_color' ) . ' }'; } if ( Helper::get_option( 'footer_links_text_color' ) ) { $static_css .= '.footer-links { --rz-text-color-gray: ' . Helper::get_option( 'footer_links_text_color' ) . ' }'; } if ( Helper::get_option( 'footer_links_text_color_hover' ) ) { $static_css .= '.footer-links { --rz-color-primary: ' . Helper::get_option( 'footer_links_text_color_hover' ) . ' }'; } } } if ( $footer_newsletter_top = Helper::get_option( 'footer_newsletter_padding_top' ) ) { $static_css .= '.footer-newsletter { --rz-footer-newsletter-top-spacing: ' . $footer_newsletter_top . 'px }'; } if ( $footer_newsletter_bot = Helper::get_option( 'footer_newsletter_padding_bottom' ) ) { $static_css .= '.footer-newsletter { --rz-footer-newsletter-bottom-spacing: ' . $footer_newsletter_bot . 'px }'; } if ( Helper::get_option( 'footer_extra_padding_top' ) ) { $static_css .= '.footer-extra { --rz-footer-extra-top-spacing: ' . Helper::get_option( 'footer_extra_padding_top' ) . 'px }'; } if ( Helper::get_option( 'footer_extra_padding_bottom' ) ) { $static_css .= '.footer-extra { --rz-footer-extra-bottom-spacing: ' . Helper::get_option( 'footer_extra_padding_bottom' ) . 'px }'; } if ( $footer_widget_top = Helper::get_option( 'footer_widget_padding_top' ) ) { $static_css .= '.footer-widgets { --rz-footer-widget-top-spacing: ' . $footer_widget_top . 'px }'; } if ( $footer_widget_bot = Helper::get_option( 'footer_widget_padding_bottom' ) ) { $static_css .= '.footer-widgets { --rz-footer-widget-bottom-spacing: ' . $footer_widget_bot . 'px }'; } if ( $footer_links_top = Helper::get_option( 'footer_links_padding_top' ) ) { $static_css .= '.footer-links { --rz-footer-links-top-spacing: ' . $footer_links_top . 'px }'; } if ( $footer_links_bot = Helper::get_option( 'footer_links_padding_bottom' ) ) { $static_css .= '.footer-links { --rz-footer-links-bottom-spacing: ' . $footer_links_bot . 'px }'; } if ( $footer_main_top = Helper::get_option( 'footer_main_padding_top' ) ) { $static_css .= '.footer-main { --rz-footer-main-top-spacing: ' . $footer_main_top . 'px }'; } if ( $footer_main_bot = Helper::get_option( 'footer_main_padding_bottom' ) ) { $static_css .= '.footer-main { --rz-footer-main-bottom-spacing: ' . $footer_main_bot . 'px }'; } // Border $footer_section_border_color = Helper::get_option( 'footer_section_border_color' ); $get_id = \Razzi\Helper::get_post_ID(); $footer_section_border_color_page = get_post_meta( $get_id, 'rz_footer_section_border_color', true ); if( $footer_section_border_color_page =='custom') { $footer_section_border_color = get_post_meta( $get_id, 'rz_footer_section_custom_border_color', true ); } if ( $footer_section_border_color ) { $static_css .= '.site-footer.has-divider { border-color: '. $footer_section_border_color .' }'; } if ( Helper::get_option( 'footer_main_border' ) && $main_border_color = Helper::get_option( 'footer_main_border_color' ) ) { $static_css .= '.footer-main.has-divider { --rz-footer-main-border-color: '. $main_border_color .' }'; } if ( Helper::get_option( 'footer_widget_border' ) && $widget_border_color = Helper::get_option( 'footer_widget_border_color' ) ) { $static_css .= '.footer-widgets.has-divider { --rz-footer-widget-border-color: '. $widget_border_color .' }'; } if ( Helper::get_option( 'footer_links_border' ) && $links_border_color = Helper::get_option( 'footer_links_border_color' ) ) { $static_css .= '.footer-links.has-divider { --rz-footer-links-border-color: '. $links_border_color .' }'; } if ( Helper::get_option( 'footer_extra_border' ) && $extra_border_color = Helper::get_option( 'footer_extra_border_color' ) ) { $static_css .= '.footer-extra.has-divider { --rz-footer-extra-border-color: '. $extra_border_color .' }'; } if ( Helper::get_option( 'footer_newsletter_border' ) && $newsletter_border_color = Helper::get_option( 'footer_newsletter_border_color' ) ) { $static_css .= '.footer-newsletter.has-divider { --rz-footer-newsletter-border-color: '. $newsletter_border_color .' }'; } return $static_css; } /** * Get CSS code of settings for mobile header * * @since 1.0.0 * * @return string */ public function mobile_header_static_css() { $static_css = ''; // Logo $dimension = Helper::get_option( 'mobile_logo_dimension' ); if ( ! empty( $dimension ) ) { $logo_width = $dimension['width']; $logo_height= $dimension['height']; $logo_width = is_numeric( $logo_width ) ? $logo_width .'px' : $logo_width; $style = $logo_width ? 'width: ' . $logo_width . ';' : ''; $logo_height = is_numeric( $logo_height ) ? $logo_height .'px' : $logo_height; $style .= $logo_height ? 'height: ' . $logo_height . ';' : ''; $static_css .= '.site-header .mobile-logo .logo-image { '. $style .' }'; } // Logo Panel $dimension = Helper::get_option( 'mobile_panel_logo_dimension' ); if ( ! empty( $dimension ) ) { $logo_width = $dimension['width']; $logo_height= $dimension['height']; $logo_width = is_numeric( $logo_width ) ? $logo_width .'px' : $logo_width; $style = $logo_width ? 'width: ' . $logo_width . ';' : ''; $logo_height = is_numeric( $logo_height ) ? $logo_height .'px' : $logo_height; $style .= $logo_height ? 'height: ' . $logo_height . ';' : ''; $static_css .= '.menu-mobile-panel-content .mobile-logo .logo-image { '. $style .' }'; } return '@media (max-width: 767px){' . $static_css .' }'; } /** * Get CSS code of settings for mobile catalog page header * * @since 1.0.0 * * @return string */ public function mobile_catalog_page_header_static_css() { $static_css = ''; if( Helper::get_option('mobile_catalog_page_header_layout') == 'layout-2' ) { if ( ( $color = Helper::get_option( 'mobile_catalog_page_header_text_color' ) ) && $color != '' ) { $static_css .= '.mobile-catalog-page-header--layout-2 {--rz-color-dark: ' . $color . '}'; } if ( ( $color = Helper::get_option( 'mobile_catalog_page_header_bread_color' ) ) && $color != '' ) { $static_css .= '.mobile-catalog-page-header--layout-2 .site-breadcrumb {color: ' . $color . '}'; } if( Helper::get_option( 'mobile_catalog_page_header_background_overlay' ) ) { $static_css .= '.mobile-catalog-page-header--layout-2 .featured-image::before {background-color: ' . Helper::get_option( 'mobile_catalog_page_header_background_overlay' ) . '}'; } if ( Helper::get_option( 'mobile_catalog_page_header_padding_top' ) !== 42 ) { $static_css .= '.mobile-catalog-page-header--layout-2 .page-header__content { padding-top: ' . Helper::get_option( 'mobile_catalog_page_header_padding_top' ). 'px; }'; } if ( Helper::get_option( 'mobile_catalog_page_header_padding_bottom' ) !== 19 ) { $static_css .= '.mobile-catalog-page-header--layout-2 .page-header__content { padding-bottom: ' . Helper::get_option( 'mobile_catalog_page_header_padding_bottom' ) . 'px; }'; } } return '@media (max-width: 767px){' . $static_css .' }'; } /** * Get CSS code of settings for product badges. * * @since 1.0.0 * * @return string */ public function mobile_footer_static_css() { $static_css = ''; // Newsletter if ( intval( Helper::get_option( 'mobile_footer_newsletter' ) ) ) { $top_spacing = Helper::get_option( 'mobile_footer_newsletter_padding_top' ); $bottom_spacing = Helper::get_option( 'mobile_footer_newsletter_padding_bottom' ); if ( $top_spacing != 30 ) { $static_css .= '.site-footer .footer-newsletter { --rz-footer-newsletter-top-spacing: ' . $top_spacing . 'px; }'; } if ( $bottom_spacing != 40 ) { $static_css .= '.site-footer .footer-newsletter { --rz-footer-newsletter-bottom-spacing: ' . $bottom_spacing . 'px; }'; } } // Widget if ( intval( Helper::get_option( 'mobile_footer_widget' ) ) ) { $top_spacing = Helper::get_option( 'mobile_footer_widget_padding_top' ); $bottom_spacing = Helper::get_option( 'mobile_footer_widget_padding_bottom' ); if ( $top_spacing != 30 ) { $static_css .= '.site-footer .footer-widgets { --rz-footer-widget-top-spacing: ' . $top_spacing . 'px; }'; } if ( $bottom_spacing != 40 ) { $static_css .= '.site-footer .footer-widgets { --rz-footer-widget-bottom-spacing: ' . $bottom_spacing . 'px; }'; } } // Main if ( intval( Helper::get_option( 'mobile_footer_main' ) ) ) { $top_spacing = Helper::get_option( 'mobile_footer_main_padding_top' ); $bottom_spacing = Helper::get_option( 'mobile_footer_main_padding_bottom' ); if ( $top_spacing != 30 ) { $static_css .= '.site-footer .footer-main { --rz-footer-main-top-spacing: ' . $top_spacing . 'px; }'; } if ( $bottom_spacing != 40 ) { $static_css .= '.site-footer .footer-main { --rz-footer-main-bottom-spacing: ' . $bottom_spacing . 'px; }'; } } // Main if ( intval( Helper::get_option( 'mobile_footer_extra' ) ) ) { $top_spacing = Helper::get_option( 'mobile_footer_extra_padding_top' ); $bottom_spacing = Helper::get_option( 'mobile_footer_extra_padding_bottom' ); if ( $top_spacing != 30 ) { $static_css .= '.site-footer .footer-extra { --rz-footer-extra-top-spacing: ' . $top_spacing . 'px; }'; } if ( $bottom_spacing != 40 ) { $static_css .= '.site-footer .footer-extra { --rz-footer-extra-bottom-spacing: ' . $bottom_spacing . 'px; }'; } } // Links if ( intval( Helper::get_option( 'mobile_footer_links' ) ) ) { $top_spacing = Helper::get_option( 'mobile_footer_links_padding_top' ); $bottom_spacing = Helper::get_option( 'mobile_footer_links_padding_bottom' ); if ( $top_spacing != 30 ) { $static_css .= '.site-footer .footer-links { --rz-footer-links-top-spacing: ' . $top_spacing . 'px; }'; } if ( $bottom_spacing != 40 ) { $static_css .= '.site-footer .footer-links { --rz-footer-links-bottom-spacing: ' . $bottom_spacing . 'px; }'; } } return '@media (max-width: 767px){' . $static_css .' }'; } /** * Get footer style data * * @since 1.0.0 * * @return string */ public function page_boxed_static_css() { $static_css = ''; // Boxed $boxed_bg_color = Helper::get_option( 'boxed_background_color' ); $boxed_bg_image = Helper::get_option( 'boxed_background_image' ); $boxed_bg_h = Helper::get_option( 'boxed_background_horizontal' ); $boxed_bg_v = Helper::get_option( 'boxed_background_vertical' ); $boxed_bg_r = Helper::get_option( 'boxed_background_repeat' ); $boxed_bg_a = Helper::get_option( 'boxed_background_attachment' ); $boxed_bg_s = Helper::get_option( 'boxed_background_size' ); $get_id = \Razzi\Helper::get_post_ID(); $page_boxed_color = get_post_meta( $get_id, 'rz_page_boxed_bg_color', true ); if ( ! empty( $page_boxed_color ) ) { $boxed_bg_color = $page_boxed_color; } $page_boxed_bg = get_post_meta( $get_id, 'rz_page_boxed_bg_image', true ); if ( ! empty( $page_boxed_bg ) ) { $boxed_bg_image = wp_get_attachment_url( $page_boxed_bg ); } $page_boxed_bg_horizontal = get_post_meta( $get_id, 'rz_page_boxed_bg_horizontal', true ); if ( $page_boxed_bg_horizontal != '' ) { $boxed_bg_h = $page_boxed_bg_horizontal; } $page_boxed_bg_vertical = get_post_meta( $get_id, 'rz_page_boxed_bg_vertical', true ); if ( $page_boxed_bg_vertical != '' ) { $boxed_bg_v = $page_boxed_bg_vertical; } $page_boxed_bg_repeat = get_post_meta( $get_id, 'rz_page_boxed_bg_repeat', true ); if ( $page_boxed_bg_repeat != '' ) { $boxed_bg_r = $page_boxed_bg_repeat; } $page_boxed_bg_attachment = get_post_meta( $get_id, 'rz_page_boxed_bg_attachment', true ); if ( $page_boxed_bg_attachment != '' ) { $boxed_bg_a = $page_boxed_bg_attachment; } $page_boxed_bg_size = get_post_meta( $get_id, 'rz_page_boxed_bg_size', true ); if ( $page_boxed_bg_size != '' ) { $boxed_bg_s = $page_boxed_bg_size; } $boxed_style = array( ! empty( $boxed_bg_color ) ? 'background-color: ' . $boxed_bg_color . ';' : '', ! empty( $boxed_bg_image ) ? 'background-image: url( ' . esc_url( $boxed_bg_image ) . ' );' : '', ! empty( $boxed_bg_h ) ? 'background-position-x: ' . $boxed_bg_h . ';' : '', ! empty( $boxed_bg_v ) ? 'background-position-y: ' . $boxed_bg_v . ';' : '', ! empty( $boxed_bg_r ) ? 'background-repeat: ' . $boxed_bg_r . ';' : '', ! empty( $boxed_bg_a ) ? 'background-attachment:' . $boxed_bg_a . ';' : '', ! empty( $boxed_bg_s ) ? 'background-size: ' . $boxed_bg_s . ';' : '', ); if ( ! empty( $boxed_style ) ) { $static_css .= '.razzi-boxed-layout ' . ' {' . implode( '', $boxed_style ) . '}'; } return $static_css; } /** * Preloader * * @since 1.0.0 * * @return string */ public function preloader_static_css() { $static_css = ''; if ( Helper::get_option( 'preloader_enable' ) ) { $color = Helper::get_option( 'preloader_background_color' ); $static_css = $color ? '.preloader { background-color: ' . $color . '; }' : ''; } return $static_css; } /** * Get Color Scheme * * @since 1.0.0 * * @return string */ public function colors_static_css() { $static_css = ''; $color = Helper::get_option( 'color_scheme_custom' ) ? Helper::get_option( 'color_scheme_color' ) : Helper::get_option( 'color_scheme' ); $color = $color ? $color : '#ff6F61'; if( $color != '#ff6F61' ) { $static_css .= 'body' . ' {--rz-color-primary:' . $color . ';--rz-color-hover-primary:'. $color .'; --rz-background-color-primary:'. $color .';--rz-border-color-primary:' . $color . '}'; } return $static_css; } /** * Get typography CSS base on settings */ public function typography_static_css() { $settings = array( 'typo_body' => 'body', 'typo_h1' => 'h1, .h1', 'typo_h2' => 'h2, .h2', 'typo_h3' => 'h3, .h3', 'typo_h4' => 'h4, .h4', 'typo_h5' => 'h5, .h5', 'typo_h6' => 'h6, .h6', 'typo_menu' => '.main-navigation a, .hamburger-navigation a', 'typo_submenu' => '.main-navigation li li a, .hamburger-navigation ul ul a', 'typo_page_title' => '.page-header__title', 'typo_blog_header_title' => '.blog .page-header__title', 'typo_blog_post_title' => '.hentry .entry-title a', 'typo_blog_post_excerpt' => '.blog-wrapper .entry-content', 'typo_widget_title' => '.widget-title, .footer-widgets .widget-title', 'typo_footer_extra' => '.footer-extra', 'typo_footer_widgets' => '.footer-widgets', 'typo_footer_main' => '.footer-main', ); return $this->get_typography_css( $settings ); } /** * Get typography CSS base on settings */ public function get_typography_css( $settings ) { if ( empty( $settings ) ) { return ''; } $css = ''; $properties = array( 'font-family' => 'font-family', 'font-size' => 'font-size', 'variant' => 'font-weight', 'line-height' => 'line-height', 'letter-spacing' => 'letter-spacing', 'color' => 'color', 'text-transform' => 'text-transform', 'text-align' => 'text-align', 'font-weight' => 'font-weight', 'font-style' => 'font-style', ); foreach ( $settings as $setting => $selector ) { if ( ! is_string( $setting ) ) { continue; } $selector = is_array( $selector ) ? implode( ',', $selector ): $selector; $typography = Helper::get_option( $setting ); $default = (array) Options::get_option_default( $setting ); $style = ''; // Correct the default values. Copy from Kirki_Field_Typography::sanitize if ( isset( $default['variant'] ) ) { if ( ! isset( $default['font-weight'] ) ) { $default['font-weight'] = filter_var( $default['variant'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ); $default['font-weight'] = ( 'regular' === $default['variant'] || 'italic' === $default['variant'] ) ? 400 : absint( $default['font-weight'] ); } // Get font-style from variant. if ( ! isset( $default['font-style'] ) ) { $default['font-style'] = ( false === strpos( $default['variant'], 'italic' ) ) ? 'normal' : 'italic'; } } if ( isset( $typography['variant'] ) && ( ! empty( $typography['font-weight'] ) || ! empty( $typography['font-style'] ) ) ) { unset( $typography['variant'] ); } foreach ( $properties as $key => $property ) { if ( ! isset( $default[ $key ] ) ) { continue; } if ( isset( $typography[ $key ] ) && ! empty( $typography[ $key ] ) ) { if ( strtoupper( $default[ $key ] ) == strtoupper( $typography[ $key ] ) ) { continue; } $value = 'font-family' == $key ? rtrim( trim( $typography[ $key ] ), ',' ) : $typography[ $key ]; $value = 'variant' == $key ? str_replace( 'regular', '400', $value ) : $value; $property = $setting == 'typo_body' && $property == 'color' ? '--rz-text-color' : $property; $property = $setting == 'typo_body' && $property == 'font-family' ? '--rz-font-family-primary' : $property; if ( $value ) { $style .= $property . ': ' . $value . ';'; } } } if ( ! empty( $style ) ) { $css .= $selector . '{' . $style . '}'; } } return $css; } }