I use the bootstrap shape, trying to make it mutable both horizontally and vertically. Using simple CSS, I:
.form-group-description{
resize: both;
overflow: auto;
width: 50%;
}
This will allow you to resize horizontally, but not vertically. I tried to use only resize: vertical;, but that didn't work either.
Any ideas? You can see what I'm talking about at http://impissed.co/
I will leave the site until I get some help (this is the description box)
EDIT: I changed it to use textarea instead of input in html. But now, when you resize to the right and move to the left, the shape will remain shifted to the right. Here's the html:
<div class="form-group-description form-group-lg">
<textarea rows="4" cols="50" type="text" class="form-control" placeholder="Description"> </textarea>
</div>