Edit File by line
/home/barbar84/www/wp-conte.../themes/Divi
File: functions.php
.footer-widget { color: <?php echo esc_html( $footer_widget_text_color ); ?>; }
[5500] Fix | Delete
<?php } ?>
[5501] Fix | Delete
<?php if ( $footer_widget_header_color !== '#2ea3f2' ) { ?>
[5502] Fix | Delete
#main-footer .footer-widget h4 { color: <?php echo esc_html( $footer_widget_header_color ); ?>; }
[5503] Fix | Delete
<?php } ?>
[5504] Fix | Delete
<?php if ( $footer_widget_bullet_color !== '#2ea3f2' ) { ?>
[5505] Fix | Delete
.footer-widget li:before { border-color: <?php echo esc_html( $footer_widget_bullet_color ); ?>; }
[5506] Fix | Delete
<?php } ?>
[5507] Fix | Delete
<?php if ( $body_font_size !== $widget_body_font_size ) { ?>
[5508] Fix | Delete
.footer-widget,
[5509] Fix | Delete
.footer-widget li,
[5510] Fix | Delete
.footer-widget li a,
[5511] Fix | Delete
#footer-info { font-size: <?php echo esc_html( $widget_body_font_size ); ?>px; }
[5512] Fix | Delete
<?php } ?>
[5513] Fix | Delete
<?php
[5514] Fix | Delete
/* Widget */
[5515] Fix | Delete
et_pb_print_styles_css( array(
[5516] Fix | Delete
array(
[5517] Fix | Delete
'key' => 'widget_header_font_style',
[5518] Fix | Delete
'type' => 'font-style',
[5519] Fix | Delete
'default' => '',
[5520] Fix | Delete
'selector' => '.footer-widget h4',
[5521] Fix | Delete
),
[5522] Fix | Delete
array(
[5523] Fix | Delete
'key' => 'widget_body_font_style',
[5524] Fix | Delete
'type' => 'font-style',
[5525] Fix | Delete
'default' => '',
[5526] Fix | Delete
'selector' => '.footer-widget .et_pb_widget div, .footer-widget .et_pb_widget ul, .footer-widget .et_pb_widget ol, .footer-widget .et_pb_widget label',
[5527] Fix | Delete
),
[5528] Fix | Delete
array(
[5529] Fix | Delete
'key' => 'widget_body_line_height',
[5530] Fix | Delete
'type' => 'line-height',
[5531] Fix | Delete
'default' => '',
[5532] Fix | Delete
'selector' => '.footer-widget .et_pb_widget div, .footer-widget .et_pb_widget ul, .footer-widget .et_pb_widget ol, .footer-widget .et_pb_widget label',
[5533] Fix | Delete
),
[5534] Fix | Delete
) );
[5535] Fix | Delete
[5536] Fix | Delete
/* Footer widget bullet fix */
[5537] Fix | Delete
if ( 1.7 !== $widget_body_line_height || 14 !== $widget_body_font_size ) {
[5538] Fix | Delete
// line_height (em) * font_size (px) = line height in px
[5539] Fix | Delete
$widget_body_line_height_px = floatval( $widget_body_line_height ) * intval( $widget_body_font_size );
[5540] Fix | Delete
[5541] Fix | Delete
// ( line height in px / 2 ) - half of bullet diameter
[5542] Fix | Delete
$footer_widget_bullet_top = ( $widget_body_line_height_px / 2 ) - 3;
[5543] Fix | Delete
[5544] Fix | Delete
printf( "#footer-widgets .footer-widget li:before { top: %spx; }", esc_html( $footer_widget_bullet_top ) );
[5545] Fix | Delete
}
[5546] Fix | Delete
[5547] Fix | Delete
/* Footer Menu */
[5548] Fix | Delete
et_pb_print_styles_css( array(
[5549] Fix | Delete
array(
[5550] Fix | Delete
'key' => 'footer_menu_background_color',
[5551] Fix | Delete
'type' => 'background-color',
[5552] Fix | Delete
'default' => 'rgba(255,255,255,0.05)',
[5553] Fix | Delete
'selector' => '#et-footer-nav'
[5554] Fix | Delete
),
[5555] Fix | Delete
array(
[5556] Fix | Delete
'key' => 'footer_menu_text_color',
[5557] Fix | Delete
'type' => 'color',
[5558] Fix | Delete
'default' => '#bbbbbb',
[5559] Fix | Delete
'selector' => '.bottom-nav, .bottom-nav a, .bottom-nav li.current-menu-item a'
[5560] Fix | Delete
),
[5561] Fix | Delete
array(
[5562] Fix | Delete
'key' => 'footer_menu_active_link_color',
[5563] Fix | Delete
'type' => 'color',
[5564] Fix | Delete
'default' => '#bbbbbb',
[5565] Fix | Delete
'selector' => '#et-footer-nav .bottom-nav li.current-menu-item a'
[5566] Fix | Delete
),
[5567] Fix | Delete
array(
[5568] Fix | Delete
'key' => 'footer_menu_letter_spacing',
[5569] Fix | Delete
'type' => 'letter-spacing',
[5570] Fix | Delete
'default' => 0,
[5571] Fix | Delete
'selector' => '.bottom-nav'
[5572] Fix | Delete
),
[5573] Fix | Delete
array(
[5574] Fix | Delete
'key' => 'footer_menu_font_style',
[5575] Fix | Delete
'type' => 'font-style',
[5576] Fix | Delete
'default' => '',
[5577] Fix | Delete
'selector' => '.bottom-nav a'
[5578] Fix | Delete
),
[5579] Fix | Delete
array(
[5580] Fix | Delete
'key' => 'footer_menu_font_size',
[5581] Fix | Delete
'type' => 'font-size',
[5582] Fix | Delete
'default' => 14,
[5583] Fix | Delete
'selector' => '.bottom-nav, .bottom-nav a'
[5584] Fix | Delete
),
[5585] Fix | Delete
) );
[5586] Fix | Delete
[5587] Fix | Delete
/* Bottom Bar */
[5588] Fix | Delete
et_pb_print_styles_css( array(
[5589] Fix | Delete
array(
[5590] Fix | Delete
'key' => 'bottom_bar_background_color',
[5591] Fix | Delete
'type' => 'background-color',
[5592] Fix | Delete
'default' => 'rgba(0,0,0,0.32)',
[5593] Fix | Delete
'selector' => '#footer-bottom'
[5594] Fix | Delete
),
[5595] Fix | Delete
array(
[5596] Fix | Delete
'key' => 'bottom_bar_text_color',
[5597] Fix | Delete
'type' => 'color',
[5598] Fix | Delete
'default' => '#666666',
[5599] Fix | Delete
'selector' => '#footer-info, #footer-info a'
[5600] Fix | Delete
),
[5601] Fix | Delete
array(
[5602] Fix | Delete
'key' => 'bottom_bar_font_style',
[5603] Fix | Delete
'type' => 'font-style',
[5604] Fix | Delete
'default' => '',
[5605] Fix | Delete
'selector' => '#footer-info, #footer-info a'
[5606] Fix | Delete
),
[5607] Fix | Delete
array(
[5608] Fix | Delete
'key' => 'bottom_bar_font_size',
[5609] Fix | Delete
'type' => 'font-size',
[5610] Fix | Delete
'default' => 14,
[5611] Fix | Delete
'selector' => '#footer-info'
[5612] Fix | Delete
),
[5613] Fix | Delete
array(
[5614] Fix | Delete
'key' => 'bottom_bar_social_icon_size',
[5615] Fix | Delete
'type' => 'font-size',
[5616] Fix | Delete
'default' => 24,
[5617] Fix | Delete
'selector' => '#footer-bottom .et-social-icon a'
[5618] Fix | Delete
),
[5619] Fix | Delete
array(
[5620] Fix | Delete
'key' => 'bottom_bar_social_icon_color',
[5621] Fix | Delete
'type' => 'color',
[5622] Fix | Delete
'default' => '#666666',
[5623] Fix | Delete
'selector' => '#footer-bottom .et-social-icon a'
[5624] Fix | Delete
),
[5625] Fix | Delete
) );
[5626] Fix | Delete
?>
[5627] Fix | Delete
<?php if ( 'rgba' === substr( $primary_nav_bg, 0, 4 ) ) { ?>
[5628] Fix | Delete
#main-header { box-shadow: none; }
[5629] Fix | Delete
<?php } ?>
[5630] Fix | Delete
<?php if ( 'rgba' === substr( $fixed_primary_nav_bg, 0, 4 ) || ( 'rgba' === substr( $primary_nav_bg, 0, 4 ) && '#ffffff' === $fixed_primary_nav_bg ) ) { ?>
[5631] Fix | Delete
.et-fixed-header#main-header { box-shadow: none !important; }
[5632] Fix | Delete
<?php } ?>
[5633] Fix | Delete
<?php if ( 20 !== $button_text_size || ! empty( $button_text_color ) || 'rgba(0,0,0,0)' !== $button_bg_color || 2 !== $button_border_width || '#ffffff' !== $button_border_color || 3 !== $button_border_radius || '' !== $button_text_style || 0 !== $button_spacing ) { ?>
[5634] Fix | Delete
<?php echo $css( 'body', '.et_pb_button' ); ?>,
[5635] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button.alt' ); ?>,
[5636] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button.alt' ); ?>,
[5637] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button.alt' ); ?>,
[5638] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button.alt.disabled' ); ?>,
[5639] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button.alt' ); ?>,
[5640] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button.alt.disabled' ); ?>,
[5641] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button.alt' ); ?>,
[5642] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button.alt' ); ?>,
[5643] Fix | Delete
.woocommerce #respond input#submit.alt,
[5644] Fix | Delete
.woocommerce-page #respond input#submit.alt,
[5645] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button.alt' ); ?>,
[5646] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button.alt' ); ?>,
[5647] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button' ); ?>,
[5648] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button' ); ?>,
[5649] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button' ); ?>,
[5650] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button' ); ?>,
[5651] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button' ); ?>,
[5652] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button' ); ?>,
[5653] Fix | Delete
.woocommerce #respond input#submit,
[5654] Fix | Delete
.woocommerce-page #respond input#submit,
[5655] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button' ); ?>,
[5656] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button' ); ?>,
[5657] Fix | Delete
.woocommerce-message a.button.wc-forward {
[5658] Fix | Delete
<?php if ( 20 !== $button_text_size ) { ?>
[5659] Fix | Delete
font-size: <?php echo esc_html( $button_text_size ); ?>px;
[5660] Fix | Delete
<?php } ?>
[5661] Fix | Delete
<?php if ( 'rgba(0,0,0,0)' !== $button_bg_color ) { ?>
[5662] Fix | Delete
background-color: <?php echo esc_html( $button_bg_color ); ?>;
[5663] Fix | Delete
<?php } ?>
[5664] Fix | Delete
<?php if ( 2 !== $button_border_width ) { ?>
[5665] Fix | Delete
border-width: <?php echo esc_html( $button_border_width ); ?>px !important;
[5666] Fix | Delete
<?php } ?>
[5667] Fix | Delete
<?php if ( '#ffffff' !== $button_border_color ) { ?>
[5668] Fix | Delete
border-color: <?php echo esc_html( $button_border_color ); ?>;
[5669] Fix | Delete
<?php } ?>
[5670] Fix | Delete
<?php if ( 3 !== $button_border_radius ) { ?>
[5671] Fix | Delete
border-radius: <?php echo esc_html( $button_border_radius ); ?>px;
[5672] Fix | Delete
<?php } ?>
[5673] Fix | Delete
<?php if ( '' !== $button_text_style ) { ?>
[5674] Fix | Delete
<?php echo esc_html( et_pb_print_font_style( $button_text_style ) ); ?>;
[5675] Fix | Delete
<?php } ?>
[5676] Fix | Delete
<?php if ( 0 !== $button_spacing ) { ?>
[5677] Fix | Delete
letter-spacing: <?php echo esc_html( $button_spacing ); ?>px;
[5678] Fix | Delete
<?php } ?>
[5679] Fix | Delete
}
[5680] Fix | Delete
<?php echo $css( 'body.et_pb_button_helper_class', '.et_pb_button' ); ?>,
[5681] Fix | Delete
<?php echo $css( 'body.et_pb_button_helper_class', '.et_pb_module.et_pb_button' ); ?>,
[5682] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'a.button.alt' ); ?>,
[5683] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'a.button.alt' ); ?>,
[5684] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'button.button.alt' ); ?>,
[5685] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'button.button.alt.disabled' ); ?>,
[5686] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'button.button.alt' ); ?>,
[5687] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'button.button.alt.disabled' ); ?>,
[5688] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'input.button.alt' ); ?>,
[5689] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'input.button.alt' ); ?>,
[5690] Fix | Delete
.woocommerce.et_pb_button_helper_class #respond input#submit.alt,
[5691] Fix | Delete
.woocommerce-page.et_pb_button_helper_class #respond input#submit.alt,
[5692] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class #content', 'input.button.alt' ); ?>,
[5693] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class #content', 'input.button.alt' ); ?>,
[5694] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'a.button' ); ?>,
[5695] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'a.button' ); ?>,
[5696] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'button.button' ); ?>,
[5697] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'button.button' ); ?>,
[5698] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class', 'input.button' ); ?>,
[5699] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class', 'input.button' ); ?>,
[5700] Fix | Delete
.woocommerce.et_pb_button_helper_class #respond input#submit,
[5701] Fix | Delete
.woocommerce-page.et_pb_button_helper_class #respond input#submit,
[5702] Fix | Delete
<?php echo $css( '.woocommerce.et_pb_button_helper_class #content', 'input.button' ); ?>,
[5703] Fix | Delete
<?php echo $css( '.woocommerce-page.et_pb_button_helper_class #content', 'input.button' ); ?> {
[5704] Fix | Delete
<?php if ( ! empty( $button_text_color ) ) { ?>
[5705] Fix | Delete
color: <?php echo esc_html( $button_text_color ); ?>;
[5706] Fix | Delete
<?php } ?>
[5707] Fix | Delete
}
[5708] Fix | Delete
<?php } ?>
[5709] Fix | Delete
<?php if ( '5' !== $button_icon || '#ffffff' !== $button_icon_color || 20 !== $button_text_size ) { ?>
[5710] Fix | Delete
<?php echo $css( 'body', '.et_pb_button:after' ); ?>,
[5711] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button.alt:after' ); ?>,
[5712] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button.alt:after' ); ?>,
[5713] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button.alt:after' ); ?>,
[5714] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button.alt:after' ); ?>,
[5715] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button.alt:after' ); ?>,
[5716] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button.alt:after' ); ?>,
[5717] Fix | Delete
.woocommerce #respond input#submit.alt:after,
[5718] Fix | Delete
.woocommerce-page #respond input#submit.alt:after,
[5719] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button.alt:after' ); ?>,
[5720] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button.alt:after' ); ?>,
[5721] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button:after' ); ?>,
[5722] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button:after' ); ?>,
[5723] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button:after' ); ?>,
[5724] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button:after' ); ?>,
[5725] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button:after' ); ?>,
[5726] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button:after' ); ?>,
[5727] Fix | Delete
.woocommerce #respond input#submit:after,
[5728] Fix | Delete
.woocommerce-page #respond input#submit:after,
[5729] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button:after' ); ?>,
[5730] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button:after' ); ?> {
[5731] Fix | Delete
<?php if ( '5' !== $button_icon ) { ?>
[5732] Fix | Delete
<?php if ( "'" === $button_icon ) { ?>
[5733] Fix | Delete
content: "<?php echo htmlspecialchars_decode( $button_icon ); ?>";
[5734] Fix | Delete
<?php } else { ?>
[5735] Fix | Delete
content: '<?php echo htmlspecialchars_decode( $button_icon ); ?>';
[5736] Fix | Delete
<?php } ?>
[5737] Fix | Delete
font-size: <?php echo esc_html( $button_text_size ); ?>px;
[5738] Fix | Delete
<?php } else { ?>
[5739] Fix | Delete
font-size: <?php echo esc_html( $button_icon_size ); ?>px;
[5740] Fix | Delete
<?php } ?>
[5741] Fix | Delete
<?php if ( '#ffffff' !== $button_icon_color ) { ?>
[5742] Fix | Delete
color: <?php echo esc_html( $button_icon_color ); ?>;
[5743] Fix | Delete
<?php } ?>
[5744] Fix | Delete
}
[5745] Fix | Delete
<?php } ?>
[5746] Fix | Delete
<?php if ( ! empty( $button_text_color_hover ) || 'rgba(255,255,255,0.2)' !== $button_bg_color_hover || 'rgba(0,0,0,0)' !== $button_border_color_hover || 3 !== $button_border_radius_hover || 0 !== $button_spacing_hover ) { ?>
[5747] Fix | Delete
<?php echo esc_attr( $css( 'body', '.et_pb_bg_layout_light.et_pb_button:hover' ) ); ?>,
[5748] Fix | Delete
<?php echo esc_attr( $css( 'body', '.et_pb_button:hover' ) ); ?> {
[5749] Fix | Delete
<?php if ( ! empty( $button_text_color_hover ) ) { ?>
[5750] Fix | Delete
color: <?php echo esc_html( $button_text_color_hover ); ?> !important;
[5751] Fix | Delete
<?php } ?>
[5752] Fix | Delete
<?php if ( 'rgba(255,255,255,0.2)' !== $button_bg_color_hover ) { ?>
[5753] Fix | Delete
background-color: <?php echo esc_html( $button_bg_color_hover ); ?>;
[5754] Fix | Delete
<?php } ?>
[5755] Fix | Delete
<?php if ( 'rgba(0,0,0,0)' !== $button_border_color_hover ) { ?>
[5756] Fix | Delete
border-color: <?php echo esc_html( $button_border_color_hover ); ?> !important;
[5757] Fix | Delete
<?php } ?>
[5758] Fix | Delete
<?php if ( 3 !== $button_border_radius_hover ) { ?>
[5759] Fix | Delete
border-radius: <?php echo esc_html( $button_border_radius_hover ); ?>px;
[5760] Fix | Delete
<?php } ?>
[5761] Fix | Delete
<?php if ( 0 !== $button_spacing_hover ) { ?>
[5762] Fix | Delete
letter-spacing: <?php echo esc_html( $button_spacing_hover ); ?>px;
[5763] Fix | Delete
<?php } ?>
[5764] Fix | Delete
}
[5765] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button.alt:hover' ); ?>,
[5766] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button.alt:hover' ); ?>,
[5767] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button.alt:hover' ); ?>,
[5768] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button.alt.disabled:hover' ); ?>,
[5769] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button.alt:hover' ); ?>,
[5770] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button.alt.disabled:hover' ); ?>,
[5771] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button.alt:hover' ); ?>,
[5772] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button.alt:hover' ); ?>,
[5773] Fix | Delete
.woocommerce #respond input#submit.alt:hover,
[5774] Fix | Delete
.woocommerce-page #respond input#submit.alt:hover,
[5775] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button.alt:hover' ); ?>,
[5776] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button.alt:hover' ); ?>,
[5777] Fix | Delete
<?php echo $css( '.woocommerce', 'a.button:hover' ); ?>,
[5778] Fix | Delete
<?php echo $css( '.woocommerce-page', 'a.button:hover' ); ?>,
[5779] Fix | Delete
<?php echo $css( '.woocommerce', 'button.button:hover' ); ?>,
[5780] Fix | Delete
<?php echo $css( '.woocommerce-page', 'button.button:hover' ); ?>,
[5781] Fix | Delete
<?php echo $css( '.woocommerce', 'input.button:hover' ); ?>,
[5782] Fix | Delete
<?php echo $css( '.woocommerce-page', 'input.button:hover' ); ?>,
[5783] Fix | Delete
.woocommerce #respond input#submit:hover,
[5784] Fix | Delete
.woocommerce-page #respond input#submit:hover,
[5785] Fix | Delete
<?php echo $css( '.woocommerce #content', 'input.button:hover' ); ?>,
[5786] Fix | Delete
<?php echo $css( '.woocommerce-page #content', 'input.button:hover' ); ?> {
[5787] Fix | Delete
<?php if ( ! empty( $button_text_color_hover ) ) { ?>
[5788] Fix | Delete
color: <?php echo esc_html( $button_text_color_hover ); ?> !important;
[5789] Fix | Delete
<?php } ?>
[5790] Fix | Delete
<?php if ( 'rgba(255,255,255,0.2)' !== $button_bg_color_hover ) { ?>
[5791] Fix | Delete
background-color: <?php echo esc_html( $button_bg_color_hover ); ?> !important;
[5792] Fix | Delete
<?php } ?>
[5793] Fix | Delete
<?php if ( 'rgba(0,0,0,0)' !== $button_border_color_hover ) { ?>
[5794] Fix | Delete
border-color: <?php echo esc_html( $button_border_color_hover ); ?> !important;
[5795] Fix | Delete
<?php } ?>
[5796] Fix | Delete
<?php if ( 3 !== $button_border_radius_hover ) { ?>
[5797] Fix | Delete
border-radius: <?php echo esc_html( $button_border_radius_hover ); ?>px;
[5798] Fix | Delete
<?php } ?>
[5799] Fix | Delete
<?php if ( 0 !== $button_spacing_hover ) { ?>
[5800] Fix | Delete
letter-spacing: <?php echo esc_html( $button_spacing_hover ); ?>px;
[5801] Fix | Delete
<?php } ?>
[5802] Fix | Delete
}
[5803] Fix | Delete
<?php } ?>
[5804] Fix | Delete
[5805] Fix | Delete
<?php if ( '' !== $body_header_style || 0 !== $body_header_spacing || 1.0 !== $body_header_height) { ?>
[5806] Fix | Delete
<?php echo $css( 'h1' ); ?>,
[5807] Fix | Delete
<?php echo $css( 'h2' ); ?>,
[5808] Fix | Delete
<?php echo $css( 'h3' ); ?>,
[5809] Fix | Delete
<?php echo $css( 'h4' ); ?>,
[5810] Fix | Delete
<?php echo $css( 'h5' ); ?>,
[5811] Fix | Delete
<?php echo $css( 'h6' ); ?>,
[5812] Fix | Delete
<?php echo $css( '.et_quote_content blockquote p' ); ?>,
[5813] Fix | Delete
<?php echo $css( '.et_pb_slide_description .et_pb_slide_title', false ); ?> {
[5814] Fix | Delete
<?php if ( $body_header_style !== '' ) { ?>
[5815] Fix | Delete
<?php echo esc_html( et_pb_print_font_style( $body_header_style ) ); ?>
[5816] Fix | Delete
<?php } ?>
[5817] Fix | Delete
<?php if ( 0 !== $body_header_spacing ) { ?>
[5818] Fix | Delete
letter-spacing: <?php echo esc_html( $body_header_spacing ); ?>px;
[5819] Fix | Delete
<?php } ?>
[5820] Fix | Delete
[5821] Fix | Delete
<?php if ( 1.0 !== $body_header_height ) { ?>
[5822] Fix | Delete
line-height: <?php echo esc_html( $body_header_height ); ?>em;
[5823] Fix | Delete
<?php } ?>
[5824] Fix | Delete
}
[5825] Fix | Delete
<?php } ?>
[5826] Fix | Delete
[5827] Fix | Delete
<?php
[5828] Fix | Delete
/* Blog Meta */
[5829] Fix | Delete
$et_pb_print_selectors_post_meta = "body.home-posts #left-area .et_pb_post .post-meta, body.archive #left-area .et_pb_post .post-meta, body.search #left-area .et_pb_post .post-meta, body.single #left-area .et_pb_post .post-meta";
[5830] Fix | Delete
[5831] Fix | Delete
et_pb_print_styles_css( array(
[5832] Fix | Delete
array(
[5833] Fix | Delete
'key' => 'post_meta_height',
[5834] Fix | Delete
'type' => 'line-height',
[5835] Fix | Delete
'default' => 1,
[5836] Fix | Delete
'selector' => $et_pb_print_selectors_post_meta,
[5837] Fix | Delete
),
[5838] Fix | Delete
array(
[5839] Fix | Delete
'key' => 'post_meta_spacing',
[5840] Fix | Delete
'type' => 'letter-spacing',
[5841] Fix | Delete
'default' => 0,
[5842] Fix | Delete
'selector' => $et_pb_print_selectors_post_meta,
[5843] Fix | Delete
),
[5844] Fix | Delete
array(
[5845] Fix | Delete
'key' => 'post_meta_style',
[5846] Fix | Delete
'type' => 'font-style',
[5847] Fix | Delete
'default' => '',
[5848] Fix | Delete
'selector' => $et_pb_print_selectors_post_meta,
[5849] Fix | Delete
),
[5850] Fix | Delete
) );
[5851] Fix | Delete
[5852] Fix | Delete
/* Blog Title */
[5853] Fix | Delete
$et_pb_print_selectors_post_header = "body.home-posts #left-area .et_pb_post h2, body.archive #left-area .et_pb_post h2, body.search #left-area .et_pb_post h2, body.single .et_post_meta_wrapper h1";
[5854] Fix | Delete
[5855] Fix | Delete
et_pb_print_styles_css( array(
[5856] Fix | Delete
array(
[5857] Fix | Delete
'key' => 'post_header_height',
[5858] Fix | Delete
'type' => 'line-height',
[5859] Fix | Delete
'default' => 1,
[5860] Fix | Delete
'selector' => $et_pb_print_selectors_post_header,
[5861] Fix | Delete
),
[5862] Fix | Delete
array(
[5863] Fix | Delete
'key' => 'post_header_spacing',
[5864] Fix | Delete
'type' => 'letter-spacing',
[5865] Fix | Delete
'default' => 0,
[5866] Fix | Delete
'selector' => $et_pb_print_selectors_post_header,
[5867] Fix | Delete
),
[5868] Fix | Delete
array(
[5869] Fix | Delete
'key' => 'post_header_style',
[5870] Fix | Delete
'type' => 'font-style',
[5871] Fix | Delete
'default' => '',
[5872] Fix | Delete
'selector' => $et_pb_print_selectors_post_header,
[5873] Fix | Delete
),
[5874] Fix | Delete
) );
[5875] Fix | Delete
?>
[5876] Fix | Delete
<?php if ( ! $slide_nav_show_top_bar ) { ?>
[5877] Fix | Delete
.et_slide_menu_top { display: none; }
[5878] Fix | Delete
<?php } ?>
[5879] Fix | Delete
<?php if ( $accent_color !== $slide_nav_bg ) { ?>
[5880] Fix | Delete
body #page-container .et_slide_in_menu_container { background: <?php echo esc_html( $slide_nav_bg ); ?>; }
[5881] Fix | Delete
<?php } ?>
[5882] Fix | Delete
<?php if ( '#ffffff' !== $slide_nav_links_color ) { ?>
[5883] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li span.et_mobile_menu_arrow:before,
[5884] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li a { color: <?php echo esc_html( $slide_nav_links_color ); ?>; }
[5885] Fix | Delete
<?php } ?>
[5886] Fix | Delete
<?php if ( '#ffffff' !== $slide_nav_links_color_active ) { ?>
[5887] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li.current-menu-item span.et_mobile_menu_arrow:before,
[5888] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li.current-menu-item a { color: <?php echo esc_html( $slide_nav_links_color_active ); ?>; }
[5889] Fix | Delete
<?php } ?>
[5890] Fix | Delete
<?php if ( 'rgba(255,255,255,0.6)' !== $slide_nav_top_color ) { ?>
[5891] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top,
[5892] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top a,
[5893] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top input { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5894] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top .et-search-form input,
[5895] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top .et-search-form button#searchsubmit_header:before { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5896] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top .et-search-form input::-webkit-input-placeholder { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5897] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top .et-search-form input::-moz-placeholder { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5898] Fix | Delete
.et_slide_in_menu_container .et_slide_menu_top .et-search-form input:-ms-input-placeholder { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5899] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container span.mobile_menu_bar.et_toggle_fullscreen_menu:before { color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5900] Fix | Delete
.et_header_style_fullscreen .et_slide_menu_top .et-search-form { border-color: <?php echo esc_html( $slide_nav_top_color ); ?>; }
[5901] Fix | Delete
<?php } ?>
[5902] Fix | Delete
<?php if ( 'rgba(255,255,255,0.6)' !== $slide_nav_search ) { ?>
[5903] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form input,
[5904] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form button#searchsubmit_header:before { color: <?php echo esc_html( $slide_nav_search ); ?>; }
[5905] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form input::-webkit-input-placeholder { color: <?php echo esc_html( $slide_nav_search ); ?>; }
[5906] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form input::-moz-placeholder { color: <?php echo esc_html( $slide_nav_search ); ?>; }
[5907] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form input:-ms-input-placeholder { color: <?php echo esc_html( $slide_nav_search ); ?>; }
[5908] Fix | Delete
<?php } ?>
[5909] Fix | Delete
<?php if ( 'rgba(0,0,0,0.2)' !== $slide_nav_search_bg ) { ?>
[5910] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_slide_menu_top .et-search-form { background: <?php echo esc_html( $slide_nav_search_bg ); ?> !important; }
[5911] Fix | Delete
<?php } ?>
[5912] Fix | Delete
<?php if ( 320 !== $slide_nav_width ) { ?>
[5913] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container { width: <?php echo esc_html( $slide_nav_width ); ?>px; }
[5914] Fix | Delete
<?php } ?>
[5915] Fix | Delete
<?php if ( '' !== $slide_nav_font_style ) { ?>
[5916] Fix | Delete
.et_slide_in_menu_container,
[5917] Fix | Delete
.et_slide_in_menu_container .et-search-field,
[5918] Fix | Delete
.et_slide_in_menu_container a,
[5919] Fix | Delete
.et_slide_in_menu_container #et-info span { <?php echo esc_html( et_pb_print_font_style( $slide_nav_font_style ) ); ?> }
[5920] Fix | Delete
<?php } ?>
[5921] Fix | Delete
<?php if ( 14 !== $slide_nav_font_size ) { ?>
[5922] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et_mobile_menu li a { font-size: <?php echo esc_html( $slide_nav_font_size ); ?>px; }
[5923] Fix | Delete
<?php } ?>
[5924] Fix | Delete
<?php if ( 14 !== $slide_nav_top_font_size ) { ?>
[5925] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container,
[5926] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container input.et-search-field,
[5927] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container a,
[5928] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container #et-info span,
[5929] Fix | Delete
.et_header_style_slide .et_slide_menu_top ul.et-social-icons a,
[5930] Fix | Delete
.et_header_style_slide .et_slide_menu_top span { font-size: <?php echo esc_html( $slide_nav_top_font_size ); ?>px; }
[5931] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et-search-field::-moz-placeholder { font-size: <?php echo esc_html( $slide_nav_top_font_size ); ?>px; }
[5932] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et-search-field::-webkit-input-placeholder { font-size: <?php echo esc_html( $slide_nav_top_font_size ); ?>px; }
[5933] Fix | Delete
.et_header_style_slide .et_slide_in_menu_container .et-search-field:-ms-input-placeholder { font-size: <?php echo esc_html( $slide_nav_top_font_size ); ?>px; }
[5934] Fix | Delete
<?php } ?>
[5935] Fix | Delete
<?php if ( 30 !== $fullscreen_nav_font_size ) { ?>
[5936] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container .et_mobile_menu li a { font-size: <?php echo esc_html( $fullscreen_nav_font_size ); ?>px; }
[5937] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li.current-menu-item a,
[5938] Fix | Delete
.et_slide_in_menu_container #mobile_menu_slide li a { padding: <?php echo esc_html( $fullscreen_nav_font_size / 2 ); ?>px 0; }
[5939] Fix | Delete
<?php } ?>
[5940] Fix | Delete
<?php if ( 18 !== $fullscreen_nav_top_font_size ) { ?>
[5941] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container,
[5942] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container input.et-search-field,
[5943] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container a,
[5944] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container #et-info span,
[5945] Fix | Delete
.et_header_style_fullscreen .et_slide_menu_top ul.et-social-icons a,
[5946] Fix | Delete
.et_header_style_fullscreen .et_slide_menu_top span { font-size: <?php echo esc_html( $fullscreen_nav_top_font_size ); ?>px; }
[5947] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container .et-search-field::-moz-placeholder { font-size: <?php echo esc_html( $fullscreen_nav_top_font_size ); ?>px; }
[5948] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container .et-search-field::-webkit-input-placeholder { font-size: <?php echo esc_html( $fullscreen_nav_top_font_size ); ?>px; }
[5949] Fix | Delete
.et_header_style_fullscreen .et_slide_in_menu_container .et-search-field:-ms-input-placeholder { font-size: <?php echo esc_html( $fullscreen_nav_top_font_size ); ?>px; }
[5950] Fix | Delete
<?php } ?>
[5951] Fix | Delete
<?php if ( '0' !== $slide_nav_font_spacing ) { ?>
[5952] Fix | Delete
.et_slide_in_menu_container,
[5953] Fix | Delete
.et_slide_in_menu_container .et-search-field { letter-spacing: <?php echo esc_html( $slide_nav_font_spacing ); ?>px; }
[5954] Fix | Delete
.et_slide_in_menu_container .et-search-field::-moz-placeholder { letter-spacing: <?php echo esc_html( $slide_nav_font_spacing ); ?>px; }
[5955] Fix | Delete
.et_slide_in_menu_container .et-search-field::-webkit-input-placeholder { letter-spacing: <?php echo esc_html( $slide_nav_font_spacing ); ?>px; }
[5956] Fix | Delete
.et_slide_in_menu_container .et-search-field:-ms-input-placeholder { letter-spacing: <?php echo esc_html( $slide_nav_font_spacing ); ?>px; }
[5957] Fix | Delete
<?php } ?>
[5958] Fix | Delete
[5959] Fix | Delete
@media only screen and ( min-width: 981px ) {
[5960] Fix | Delete
<?php if ( 4 !== $section_padding ) { ?>
[5961] Fix | Delete
<?php echo $css( '.et_pb_section', false ); ?> { padding: <?php echo esc_html( $section_padding ); ?>% 0; }
[5962] Fix | Delete
<?php echo $css( '.et_pb_fullwidth_section', false ); ?> { padding: 0; }
[5963] Fix | Delete
<?php } ?>
[5964] Fix | Delete
<?php if ( 2 !== $row_padding ) { ?>
[5965] Fix | Delete
<?php echo $css( '.et_pb_row', false ); ?> { padding: <?php echo esc_html( $row_padding ); ?>% 0; }
[5966] Fix | Delete
<?php } ?>
[5967] Fix | Delete
<?php if ( intval( $body_header_size * .6 ) !== $widget_header_font_size ) { ?>
[5968] Fix | Delete
.footer-widget h4 { font-size: <?php echo esc_html( $widget_header_font_size ); ?>px; }
[5969] Fix | Delete
<?php } ?>
[5970] Fix | Delete
<?php if ( 66 !== $menu_height ) { ?>
[5971] Fix | Delete
.et_header_style_left #et-top-navigation, .et_header_style_split #et-top-navigation { padding: <?php echo esc_html( round( $menu_height / 2 ) ); ?>px 0 0 0; }
[5972] Fix | Delete
.et_header_style_left #et-top-navigation nav > ul > li > a, .et_header_style_split #et-top-navigation nav > ul > li > a { padding-bottom: <?php echo esc_html( round ( $menu_height / 2 ) ); ?>px; }
[5973] Fix | Delete
.et_header_style_split .centered-inline-logo-wrap { width: <?php echo esc_html( $menu_height ); ?>px; margin: -<?php echo esc_html( $menu_height ); ?>px 0; }
[5974] Fix | Delete
.et_header_style_split .centered-inline-logo-wrap #logo { max-height: <?php echo esc_html( $menu_height ); ?>px; }
[5975] Fix | Delete
.et_pb_svg_logo.et_header_style_split .centered-inline-logo-wrap #logo { height: <?php echo esc_html( $menu_height ); ?>px; }
[5976] Fix | Delete
.et_header_style_centered #top-menu > li > a { padding-bottom: <?php echo esc_html( round ( $menu_height * .18 ) ); ?>px; }
[5977] Fix | Delete
.et_header_style_slide #et-top-navigation, .et_header_style_fullscreen #et-top-navigation { padding: <?php echo esc_html( round( ( $menu_height - 18 ) / 2 ) ); ?>px 0 <?php echo esc_html( round( ( $menu_height - 18 ) / 2 ) ); ?>px 0 !important; }
[5978] Fix | Delete
<?php if ( ! $vertical_nav ) { ?>
[5979] Fix | Delete
.et_header_style_centered #main-header .logo_container { height: <?php echo esc_html( $menu_height ); ?>px; }
[5980] Fix | Delete
<?php } ?>
[5981] Fix | Delete
<?php } ?>
[5982] Fix | Delete
<?php if ( 54 !== $logo_height && in_array( $header_style, array( 'left', 'slide', 'fullscreen' ) ) ) { ?>
[5983] Fix | Delete
#logo { max-height: <?php echo esc_html( $logo_height . '%' ); ?>; }
[5984] Fix | Delete
.et_pb_svg_logo #logo { height: <?php echo esc_html( $logo_height . '%' ); ?>; }
[5985] Fix | Delete
<?php } ?>
[5986] Fix | Delete
<?php if ( 64 !== $logo_height && 'centered' === $header_style ) { ?>
[5987] Fix | Delete
.et_header_style_centered #logo { max-height: <?php echo esc_html( $logo_height . '%' ); ?>; }
[5988] Fix | Delete
.et_pb_svg_logo.et_header_style_centered #logo { height: <?php echo esc_html( $logo_height . '%' ); ?>; }
[5989] Fix | Delete
<?php } ?>
[5990] Fix | Delete
<?php if ( $vertical_nav && et_get_option( 'logo_height' ) ) { ?>
[5991] Fix | Delete
#main-header .logo_container { width: <?php echo esc_html( $logo_height . '%' ); ?>; }
[5992] Fix | Delete
.et_header_style_centered #main-header .logo_container,
[5993] Fix | Delete
.et_header_style_split #main-header .logo_container { margin: 0 auto; }
[5994] Fix | Delete
<?php } ?>
[5995] Fix | Delete
<?php if ( $vertical_nav && 0 !== $menu_margin_top ) { ?>
[5996] Fix | Delete
.et_vertical_nav #et-top-navigation { margin-top: <?php echo esc_html( $menu_margin_top . 'px' ); ?>;}
[5997] Fix | Delete
<?php } ?>
[5998] Fix | Delete
<?php if ( 'false' !== $hide_primary_logo || 'false' !== $hide_fixed_logo ) { ?>
[5999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function