Hi wishfull !
I had the same problem that you described. I couldn’t find any answer, so i decided to get around the problem.
To avoid the bug of the tooltip under IE7 (pop-up behind the next day), simply modify these lines in the file ‘events.js'(line:13,16):
backticks
var bottomPad = $(this).parents(“td”).outerHeight() + 22; /*default=5*/
var bottomPad = $(this).outerHeight() + 35; /*default=18*/
backticks
The values will depend of the height of your ‘td’ elements. What we need is to display the tooltip above the ‘td’ containing the number of the day.
The toolip will then not appear above the ‘td’ containing the date. The bug is avoided.
Hope this will help you.
Bye