• Resolved martyn

    (@marty2010)


    Hi,

    how can I move the gdpr icon behind footer? z-index does not work.

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Moove Agency

    (@mooveagency)

    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.

    Thread Starter martyn

    (@marty2010)

    Hi,

    thank you for your reply.

    The website is https://www.marinstyle.it/, I mean how can I set a z-index rule for button id > #moove_gdpr_save_popup_settings_button, to get it behind the footer.

    Plugin Author Moove Agency

    (@mooveagency)

    Hi,

    We prepared a video tutorial for you about how to achieve this:

    Hope this helps.

    Thread Starter martyn

    (@marty2010)

    Thank You so much for the video!

    Problem solved.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘icon behind footer’ is closed to new replies.