Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support ingasupranovich

    (@ingasupranovich)

    Hi, @niepoddawajsie
    It is not recommended to change the position of the chat widget though you can do it with this css:
    Move widget up:

    .fb_dialog.fb_dialog_advanced { 
      margin-bottom: 75px; 
    } 
    
    iframe.fb_customer_chat_bounce_in_v2 { 
       margin-bottom: 75px; 
    } 
    
    iframe.fb_customer_chat_bounce_out_v2 { 
       margin-bottom: 75px; 
    } 

    Move widget to the left:

    .fb_dialog.fb_dialog_advanced {  
    position: relative; 
    left: 30px; 
    }  
    
    .fb_iframe_widget iframe{ 
    position: relative; 
    left: 50px; 
    }  
    
    @media (max-width: 900px) {  
    .fb_dialog {  
    position: relative; 
    left: 30px; !important;  
    }  
    .fb_iframe_widget iframe{ 
    position: relative; 
    left: 50px; 
    margin-bottom: 75px; 
    }
    }

    I need to move the wp-chatbot to the left side of the screen. This didn’t work for me. Why can’t we have an option in the chatbot widget settings in WordPress? Oh, wait! There are no settings! Maybe that’s part of the problem. lol Who makes a plugin without the option to change the location?

    Plugin Support ingasupranovich

    (@ingasupranovich)

    Hi, @jdmacdiarmid
    Facebook does not provide an option and highly suggest not changing the default position.
    FB docs: https://monosnap.com/file/G8BnZk8sdkymJ1afbVaGnbrFG5kVNM

    The won’t be an option in the WP-Chatbot to change the position until FB changes its recommendations.
    It is possible to move the chat widget to the left with CSS, though it is not recommended as issues may occur. The plugin has lots of moving parts and some of them may be rendered incorrectly especially if FB makes some changes.

    You can use this to move to the left

    iframe[data-testid="bubble_iframe"] {
      left: 12px; 
      right: auto;
      }
    
    iframe[data-testid="dialog_iframe"]{
      left: 4px;
      right: auto;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change position problem’ is closed to new replies.