• Resolved Rodrigo

    (@vejapixel)


    Hello guys,

    I would like to leave a suggestion for you to offer the possibility of moving the balloon both vertically and horizontally separately for desktop, tablet and mobile.
    That’s because sometimes we want to move the balloon upwards only on the mobile.
    For example, on the desktop, the balloon is ok – https://prnt.sc/w8kz2s. But on mobile, the balloon is not ok – https://prnt.sc/w8kzj0.

    Thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Support gVectors Support

    (@gvectorssupportmember)

    Hi @vejapixel,

    I would like to leave a suggestion for you to offer the possibility of moving the balloon both vertically and horizontally separately for desktop, tablet and mobile

    We’re really sorry, but probably no.
    However, you can do it via CSS. Try the following CSS code:

    @media screen and (max-width: 600px)
    #wpd-bubble-wrapper {
        bottom: 500px;
    }

    The value of the bottom can be changed.
    The CSS code should be added in the Top Admin Bar > Customize > Additional CSS > “Additional CSS” textarea.

    Please don’t forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking.

    Thread Starter Rodrigo

    (@vejapixel)

    If I insert the line @media screen and (max-width: 600px), it doesn’t work.

    It only works if I enter only:

    #wpd-bubble-wrapper {
        bottom: 70px;
    }

    The problem is that in this way the css will be applied to both mobile and desktop. And I would like to apply css separately.

    Plugin Support gVectors Support

    (@gvectorssupportmember)

    Hi @vejapixel,

    Please try the following one:

    @media screen and (max-width: 600px){
    #wpd-bubble-wrapper {
        bottom: 500px;
       }
    }
    Thread Starter Rodrigo

    (@vejapixel)

    Okay, it worked.
    Help me to define the position horizontally. I inserted “left: 87.2%;” and the balloon was in the right place on the mobile, but the numbering was decentralized: https://prnt.sc/wae0gu

    And help me to define position (horizontal and vertical) for desktop and tablet.

    Plugin Support gVectors Support

    (@gvectorssupportmember)

    Hi @vejapixel,

    There is no such an issue on our test website.
    Could you please leave the example URL to allow us to check it?

    Thread Starter Rodrigo

    (@vejapixel)

    Plugin Support gVectors Support

    (@gvectorssupport)

    @vejapixel,

    Use the CSS code below:

    @media screen and (max-width: 600px){
       #wpd-bubble-wrapper {
          display: flex !important;
          flex-direction: column;
          align-items: center;
      }
    }
    Thread Starter Rodrigo

    (@vejapixel)

    It was ok now. Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Suggestion : Separate offset settings for desktop, tablet and mobile’ is closed to new replies.