klox
klox

Reputation: 2093

How to resize jQuery datepicker?

I have jQuery Datepicker inside my form.

My problem is after I have clicked inside textfield, datepicker shows too big.

How can I resize datepicker?

Upvotes: 3

Views: 4702

Answers (1)

vikmalhotra
vikmalhotra

Reputation: 10071

Check for solution in this thread

I quote -

add in a stylesheet loaded after the ui-files

div.ui-datepicker{
 font-size:10px;
}

Upvotes: 5

Related Questions