Geocomplete widget is moving the fields when selecting an address, I want it to be static like a normal dropdown

  • PioneerProperty
    Asked on February 7, 2018 at 6:51 PM

    Hi there,

     

    How do I get the Geocomplete address dropdown to go OVER the other form fields as opposed to what it currently does... pushes them down. (On my form, the Address/Geocomplete is the first field and under that are phone and email fields and below those is the submit button)

    I've included some screenshots of my form and of another form that works in the manner I want.

    Thank you!

     1518047470Form Dropdown Screenshot 10

     

     

  • Jan
    Replied on February 7, 2018 at 10:10 PM

    Please try adding this custom CSS code:

    #customFieldFrame_1 {
    position: absolute;
    z-index: 999;
    }

    #id_2 {
    margin-top: 50px;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    1518059320drodown Screenshot 10

    Hope that helps. Thank you.