input textbox larger than input-lg

452 Views Asked by At

I am trying to increase the size of my search textbox to something larger than input-lg (using Bootstrap 3). Is that possible? Couldn't find much in Bootstrap 3 docs or SO posts.

1

There are 1 best solutions below

0
On BEST ANSWER

I ended up doing the following. Thanks to @gianni's comment.

HTML

<input class="form-control input-lg searchbox" name="query" type="text"  autocomplete="off">

CSS

.searchbox {
  font-size: 23px;
  height: 60px;
  padding: 1px 7px; 
  text-transform: capitalize; /* Capitalises first letter of each word only 'visually', value sent is as-typed */
}