Search code examples
javascriptfacebookmobilefacebook-app-requestsfacebook-ui

facebook share/apprequest dialog size (mobile)


I would like to know can I change the apprequest dialog size in mobile version? I tried .FB_UI_Dialog to change the width, but it will change all dialog. I only want to change apprequest and share dialog


Solution

  • Try with.

     .FB_UI_Dialog {
    width: 400px !important; 
    }
    

    Take a look at !important how and when use it