I have a form with this label and imput to add the value
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="form-group">
<label for="nombre">Nombre:</label>
<input class="form-control" id="nombre" name="nombre" type="text" placeholder="Nombre"></input>
</div>
I want to cut the input, which is not so long. According to the bootstrap manual, I have to add a div with the columns I want it to occupy, like this:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="form-group">
<label for="nombre">Nombre:</label>
<div class="col-sm-4">
<input class="form-control" id="nombre" name="nombre" type="text" placeholder="Nombre"></input>
</div>
</div>
How would it be done and what is the problem?
Edit: According to what I have downloaded, the bootstap version is: Bootstrap v3.3.6
Thank you very much.