Left padding dropdown in iOS

  • eridamega
    Asked on June 9, 2017 at 8:32 PM

    I have problems with the left padding in iOS, android and laptop works fine, how can I fix this? Thank you

    Left padding dropdown in iOS Image 1 Screenshot 20

  • BJoanna
    Replied on June 10, 2017 at 12:57 AM

    It seems that this issue is related Apple devices, where the drop down arrow will disappear if you put a CSS style background for the dropdown field. 

    Please try to add this CSS code to your form to see if that will resolve your issue:

    #input_10 {

        -webkit-appearance: menulist;

    }

    You can also try with this CSS code:

    #input_10 {

        -webkit-appearance: none;

    }

    How to Inject Custom CSS Codes

    Hope this will help. 

  • eridamega
    Replied on June 10, 2017 at 10:36 AM

    Nice, It works with 

    #input_10 {

        -webkit-appearance: none;

    }

    Thanks