Calendar shows furthur up on the page. It has to show underneath the text filed.
Solution
Go to file js/calendar/calendar.js
Somewhere around line number 1459 spot the lines
if (Calendar.is_ie) {
br.y += document.body.scrollTop;
br.x += document.body.scrollLeft;
} else {
br.y += window.scrollY;
br.x += window.scrollX;
}
change this to
if (Calendar.is_ie) {
br.y += document.body.document.documentElement.scrollTop;
br.x += document.body.document.documentElement.scrollLeft;
} else {
br.y += window.scrollY;
br.x += window.scrollX;
}
Courtesy: Magento – IE hack for calendar.js positioning – ‘How do I’ Questions – eCommerce Software for Growth
SocialVibe