Hi Martyn
Without knowing the URL of your site, we can only provide the generic z-index snippet to be added to functions.php:
add_action(‘moove_gdpr_inline_styles’,’gdpr_cookie_css_extension_zindex’,10,3);
function gdpr_cookie_css_extension_zindex( $styles, $primary, $secondary ) {
$styles .= ‘#moove_gdpr_cookie_info_bar { z-index: 99999999; }’;
$styles .= ‘body.moove_gdpr_overflow #moove_gdpr_cookie_info_bar { z-index: 9900; }’;
$styles .= ‘body.moove_gdpr_overflow .gdpr_lightbox { z-index: 999999999; }’;
return $styles;
}
Hope this helps.