| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/divi-pixel/public/partials/ |
Upload File : |
<?php
namespace DiviPixel;
$main_header_shadow = DIPI_Public::get_option('main_header_shadow');
$main_header_shadow_color = DIPI_Public::get_option('main_header_shadow_color');
$main_header_shadow_offset = DIPI_Public::get_option('main_header_shadow_offset');
$main_header_shadow_blur = DIPI_Public::get_option('main_header_shadow_blur');
$fixed_header_shadow = DIPI_Public::get_option('fixed_header_shadow');
$fixed_header_shadow_color = DIPI_Public::get_option('fixed_header_shadow_color');
$fixed_header_shadow_offset = DIPI_Public::get_option('fixed_header_shadow_offset', 50);
$fixed_header_shadow_blur = DIPI_Public::get_option('fixed_header_shadow_blur', 100);
?>
<?php if($main_header_shadow) : ?>
<style type="text/css" id="main-header-bar-css">
#main-header,
.et-l--header {
box-shadow: 0px <?php echo $main_header_shadow_offset; ?>px <?php echo $main_header_shadow_blur; ?>px <?php echo $main_header_shadow_color; ?> !important;
transition: all 0.3s ease-in-out;
}
</style>
<?php endif; ?>
<?php if($fixed_header_shadow) : ?>
<style type="text/css" id="fixed-header-bar-css">
header#main-header.et-fixed-header {
box-shadow: 0px <?php echo $fixed_header_shadow_offset; ?>px <?php echo $fixed_header_shadow_blur; ?>px <?php echo $fixed_header_shadow_color; ?> !important;
transition: all 0.3s ease-in-out;
}
</style>
<?php endif; ?>
<style type="text/css" id="main-header-bar-mobile-css">
.et_header_style_centered header#main-header.et-fixed-header .logo_container.logo_container {
height: auto !important;
}
</style>