You can force the size change by modifying this line in your custom css file.
Replace the following line:
.ui-datepicker { width: 17em; padding: .2em .2em 0;}
With this:
.ui-datepicker { width: 17em; padding: .2em .2em 0; font-size: 12px !important;}
The "!important;" tag tells it to override the body tag.
It help me very much!! thansk :D
ReplyDelete$(".ui-datepicker").css("width", "14em");
ReplyDelete$(".ui-widget").css("fontSize", "0.9em");
This comment has been removed by a blog administrator.
ReplyDelete