Contact Us Or Email Us At Info@enlightendental.ca

Contact Us

Fields With Are Required
You can also call us at 604-876-9228. This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Rate, Review & Explore

Social Accounts Sprite
// ************************ FOOTER V2 ************************ // Select the elements const socialStripe = document.querySelector('.social-stripe-section'); const footerSection = document.querySelector('.footer-section'); // Check if both elements exist if (socialStripe && footerSection) { // Create the wrapper div const wrapper = document.createElement('div'); wrapper.classList.add('social-footer-wrapper'); // Append the wrapper to the parent container socialStripe.parentNode.insertBefore(wrapper, socialStripe); // Move the social-stripe-section and footer-section into the wrapper wrapper.appendChild(socialStripe); wrapper.appendChild(footerSection); } // ************************ END FOOTER V2 ************************ }