Fill width in Facebook App

  • craftlabph
    Asked on October 30, 2016 at 2:09 AM

    Hello,

    Is it possible to fill the width of the Facebook app? It looks like it's not centered.

    Fill width in Facebook App Image 1 Screenshot 20

     

    Thanks!

  • Jan
    Replied on October 30, 2016 at 11:34 AM

    It is possible to increase the width of the form by removing the max-width and adjusting the width to 100% by using custom CSS.

    Here's the CSS code:

    .form-all {
       width: 100% !important;
       max-width: none !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Hope that helps. Thank you.