I developed an application using bootstrap (getbootstrap.com). I created a date field and linked the datepicker from the bootstrap itself. How do I change the size of the calendar? I need to display it smaller.
I developed an application using bootstrap (getbootstrap.com). I created a date field and linked the datepicker from the bootstrap itself. How do I change the size of the calendar? I need to display it smaller.
Use the following CSS in your CSS:
.datepicker table tr td{
width:auto !important;
height: auto !important;
font-size: 11px !important;
}
To change the size of datepicker simply change font size
Open the Navigator Console, inspect the element, grab the class and use it in a separate CSS by editing the directives and inserting the! important flag.