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;
}
Related Articles
- Magento Launches Magento Mobile to Provide Fast, Feature-Rich Mobile Storefront Apps (eon.businesswire.com)
- Magento Appoints Software Veterans Michel Goossens and Jary Carter to Spearhead Global Expansion (eon.businesswire.com)
- TDS Releases Magento eCommerce Connector for Openbravo ERP (prweb.com)
- TheFind and Magento Partner on Better Data and More Leads for Online Merchants (eon.businesswire.com)
- Magento vs. Oxid – My first impressions (romanzenner.com)
- Polaroid: A Free Magento Theme For Your eCommerce Website (smashingmagazine.com)
- Magento Mobile Broadens E-Commerce To iPhone Shopping Apps (techcrunch.com)
- London eCommerce Agency Digivate Become Official Magento Enterprise Partners (prweb.com)
- Niche Retail Announces Enterprise Partnership with Magento – Offering Open Source eCommerce Solutions (prweb.com)
- Designing Mindfulness: Gorilla Launches New prAna Site on Magento Enterprise (prweb.com)
- Extending the Magento API (nofluffjuststuff.com)
- Recording of Mixergy meetup @Coloft – “Guide to branding” featured Sasha Strauss (Innovation Protocol) & Roy Rubin (Magento) (asable.com)
- Magento integrated with WordPress – Clubbed Templates (your-story.org)
Advertisements
Thanks you saved me some research time 🙂
LikeLike