• Resolved spikespiegel

    (@spikespiegel)


    I’m trying to position the popup to the left bottom of the page, but it’s getting messed up in the mobile layout. Here’s what I tried:

    /* COOKIE BAR */
    #cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="popup"] {
    top: 84% !important;
    left: 21% !important;
    }

    Is there anyway for me to fix this without having to create a responsive layout?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter spikespiegel

    (@spikespiegel)

    I just want to put the popup in the corner.

    Plugin Author WebToffee

    (@webtoffee)

    Hi @spikespiegel,

    You can set it from the settings. Go to GDPR Cookie Consent menu > Settings > Customise Cookie Bar > set Show cookie bar as Widget and choose Left position.

    Thread Starter spikespiegel

    (@spikespiegel)

    I tried that, but the widget is very small when seeing from desktop layout.

    Plugin Author WebToffee

    (@webtoffee)

    Hi @spikespiegel,

    Try adding below code to your active site theme’s CSS.

    #cookie-law-info-bar[data-cli-style="cli-style-v2"][data-cli-type="popup"] {
      bottom: 7% !important;
      top: unset !important;
      left: 2% !important;
      margin-left: unset !important;
    }
    @media only screen and (max-width: 500px) {
      .cli-bar-btn_container {
        display: inline-block;
      }
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘popup position’ is closed to new replies.