Is it possible to adjust the width of the input field using the provided starter template?
https://getbootstrap.com/docs/4.1/examples/starter-template/
I am specifically looking to reduce the size of this section:
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
I attempted to encapsulate the input field in a <div class="col-xs-2">
, but it had no effect. Are there any other methods I can explore?