2. The input field does not comply with the theme I am using for my form. In particular, I did not find a way to align the font size and the field wid

  • zaddig
    Asked on November 24, 2016 at 2:06 PM
    2. The input field does not comply with the theme I am using for my form. In particular, I did not find a way to align the font size and the field width with the rest of the form. I tried to fiddle with the CSS settings to no avail. It looks like the width or the font are overrides somewhere? 
  • Mike
    Replied on November 24, 2016 at 2:47 PM

    You may add the next CSS to the GeoComplete widget to style it in a similar way to your Text Box input.

    input {
    max-width: 372px;
    padding: 4px 3px 2px 3px !important;
    font: 14px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    color: #777;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    }

    2. The input field does not comply with the theme I am using for my form. In particular, I did not find a way to align the font size and the field wid Image 20

    Thank you.