Datepicker from Bootstrap

Asked

Viewed 306 times

2

I developed an application using bootstrap (getbootstrap.com). I created a date field and linked the datepicker of the bootstrap itself. How do I change the size of the calendar? I need to show it smaller.

Modo como está sendo exibido.

2 answers

1

Open the Browser Console, inspect the element, take the classes and use them in a separate CSS by editing the directives and inserting the flag ! Important.

1


Use the following in your CSS:

.datepicker table tr td{
   width:auto !important;
   height: auto !important;
   font-size: 11px !important;
}

To change the size of datepicker just change the font size.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.