How to control the size of the datepicker widget?
When I use a datepicker with a SPAN, the style attribute of the SPAN controls the size of the datepicker nicely:
<span id='datepicker-container' style='font-size:62.5%'></span>
When I try to define the size of the datepicker based on an INPUT element, the INPUT element style doesn't control the datepicker size, I have to use a global style, which is bad if I need 2 datepickers with different styles.
<style>
.ui-datepicker {
font-size:62.5%;
}
<input type='text' id='datepicker'>
What's the right way of defining the datepicker size?
Thanks
Fred