• Resolved pesusa64

    (@pesusa64)


    Hi there, I have tried to find an obvious solution, checked plug in is activated, etc,. but can only see plug in on mobile, not on tablet or incognito tab. I am using Bing, chrome and safari. Works on Safari (mobile)

    Thanks in anticipation

    The page I need help with: [log in to see the link]

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

    (@mooveagency)

    Hi @pesusa64,

    Thanks for using our plugins.

    You can try the following code snippet to decrease the z-index of your theme’s header (should be added to functions.php):

    add_action('moove_gdpr_inline_styles','gdpr_cookie_css_extension',10,3);
    function gdpr_cookie_css_extension( $styles, $primary, $secondary ) {
      ob_start();
      ?>
      #main-header {
        z-index: 999;
      }
      <?php
      $styles .= ob_get_clean();
      return $styles;
    }

    Alternatively, you can change the cookie banner position to “bottom”.

    Hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Plug in only seems to work on mobile’ is closed to new replies.