Importing to Canada?

We serve all of Canada and we understand the unique Canadian logistics market

Looking for a Better 3PL?

Discover McKenna’s commitment to accuracy and timeliness

Ready to Grow Your Business?

If you’re getting started with mass retailers, we can help

// AODA Fix: Hide mobile nav from accessibility tree var mobileNav = document.querySelector('.mobile_nav'); if (mobileNav) { mobileNav.setAttribute('aria-hidden', 'true'); mobileNav.querySelectorAll('a, button, input, select, textarea').forEach(function(el) { el.setAttribute('tabindex', '-1'); }); } // AODA Fix: Remove all IDs from mobile nav containers document.querySelectorAll('.mobile_nav [id], .et_mobile_nav_menu [id]').forEach(function(el) { el.removeAttribute('id'); }); // AODA Fix: Deduplicate remaining IDs sitewide var idCount = {}; document.querySelectorAll('[id]').forEach(function(el) { idCount[el.id] = (idCount[el.id] || 0) + 1; }); var seen = {}; document.querySelectorAll('[id]').forEach(function(el) { var id = el.id; if (idCount[id] > 1) { seen[id] = (seen[id] || 0) + 1; if (seen[id] > 1) { el.removeAttribute('id'); } } }); // AODA Fix: Add aria-label to desktop search var desktopSearch = document.querySelector('.et-menu-nav input[name="s"]'); if (desktopSearch) { desktopSearch.setAttribute('aria-label', 'Search'); }