[jQuery] month not displaying in datepicker inside superfish menu
I'm trying to figure out what the layout for the datepicker looks like
in plain html so I can figure out why the month doesn't display when
the datepicker is inside of a superfish menu.
Rather than display the month and the year arrows in a single row, the
year and month arrows are displayed in seperate rows, and the month
text does not appear at all.
looking at the css file and datepicker.js files, it appears that the
month is held in an h2,
[code]
// set the title...
$('h2', this.context).html(Date.monthNames[this.displayedMonth] +
' ' + this.displayedYear);
[/code]
but even adding
[code]
h2 {
position: absolute;
top: 3px;
left: 3px;
}
[/code]
doesn't display the month anywhere on the page.
Anybody know why the month won't display in this context?
To see the page (not completely working at this location, but you can
see the issue, go to http://www.hearwhere.com/filterDates.php and
hover over where it says "all dates" in the grey search bar.
The superfish menu will dropdown revealing the datepicker.
Thanks
Pete