I tried to implement multi select-boxes from select2. The widget works fine, but the user input is under the field.
Screen:
this how it looks in html.
<select class="js-example-basic-multiple" name="states[]" multiple="multiple">
<option value="AL">Something</option>
<option value="WY">Wyoming</option>
<option value="WY">Somebody</option>
</select>
<script>
$(document).ready(function() {
$('.js-example-basic-multiple').select2();
});
</script>
I tried to change height, but maybe not its the problem