• Resolved gelu16

    (@gelu16)


    Hi,

    Is possible to hide button on mobile and if popup is open?
    Is possible to change position for button? Top right is OK.
    Thank you!

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor vadim8vz

    (@vadim8vz)

    Hi, you can use css code:
    /*Change position*/

    
    #vdz_cb_widget {
        position: fixed;
        right: 40px;
        bottom: initial;
        top: 80px;
    }
    

    /*Hide on mobile*/

    
    @media all and (max-width: 680px){
    	#vdz_cb_widget {
    		display: none !important;
    	}
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Hide button on mobile screen’ is closed to new replies.