If have my input like this
<input type="text" class="long_form_fields" id="pickup_address" name="pickup_address" placeholder="Address" autocomplete="off">
Very bottom of my Bootstrap CSS file is this
#pickup_address.long_form_fields {
width: 420px
}
Also tried these
.long_form_fields {
width: 420px
}
input.long_form_fields {
width: 420px
}
Nothing will change the input field width. I looked in the Chrome developer tools and my CSS class style of long_form_fields but it never shows up?
======= UPDATE ========
In Chrome Dev Tools, if I click the + button and add this then it works.
input#pickup_address {
width: 420px;
}