Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 217
Danni Avatar asked Apr 26 '11 20:04

Danni


1 Answers

Change the font-size on your datepicker instance.

#datepicker {font-size:10px;}
like image 168
Nathan Avatar answered Oct 08 '22 14:10

Nathan