Changing Jquery Calendar size using google hosted theme
- by Ali
I am trying to implement the Jquery datepicker using a google hosted theme. But the Calendar is too big. Can I make it a smaller version by altering the function itself seeing I cant change the theme?
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/start/jquery-ui.css" type="text/css" media="all" />
<script type="text/javascript" src="jquery.js"></script>
$(function() {
$("#datepicker").datepicker({ dateFormat: $.datepicker.W3C});
});
Thanks