Bootstrap Datepicker

2

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.

    
asked by anonymous 25.11.2014 / 02:38

2 answers

1

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

    
27.11.2014 / 11:51
1

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.

    
27.11.2014 / 11:29