Okay
  Public Ticket #2464361
Problem with form on mobile
Closed

Comments

  • Pasquale Mango started the conversation

    Hey guys. First of all, I want to tell you that your theme is truly amazing. Everything works perfectly but I only have one problem. From mobile if you try to fill out a form on any page, the theme asks to put the device horizontally. this is not good because not everyone has enabled automatic screen rotation and when you put the screen horizontally the visibility to fill out the form is very reduced. How can I do to disable this thing? it is really important for me to do it as soon as possible. Thank you

  •  1,806
    Support replied

    Hello Pasquale,

    There is a reason we have the mobile landscape view rotating image which indicates the best preview is portrait. the top and bottom bars will cover much of the content which has a smaller height anyway in landscape view.

    to enable landscape however add this to customizer -> additional CSS

    @media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {                

           #rotate-device {           

                 display:block;     

          } 

    }

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Pasquale Mango replied

    Thank you guys. now works