Here is the code I am working with:
HTML:
<div class="input-append date datepicker no-padding" data-date-format="dd-mm-yyyy">
<input class="input-medium" size="16" type="text"><span class="add-on"><i class="icon-th"></i></span>
</div>
Javascript:
$(document).ready(function() {
$('.datepicker').datepicker({
autoclose: true,
startDate: new Date()
});
});
Demo: jsfiddle
I am looking to adjust the size of the bootstrap datepicker.
If you have any suggestions on how to solve this issue, please let me know.
Thank you!