Danni
Danni

Reputation: 315

Small jQuery datepickers (CSS question)

I implemented a jQuery datepicker on my site. That part all worked fine. The problem is that it's much too large! All the examples in the tutorials have nice small calendars but when I implement it (I'm using the Google hosted dot-luv css) it's really big. I've looked across the jQuery site but I can't find a standard css template with small calendars.

I need something like the calendar on http://jqueryui.com/demos/datepicker/#inline.

Is there an easy way to get that size or are they just teasing us?

Thanks!

Upvotes: 5

Views: 4910

Answers (1)

Nathan
Nathan

Reputation: 106

Change the font-size on your datepicker instance.

#datepicker {font-size:10px;}

Upvotes: 8

Related Questions