Footer contact info
<script>
document.addEventListener("DOMContentLoaded", function() {
var contactInfoDiv = document.createElement("div");
contactInfoDiv.classList.add("footer-contact-info");
// THIS IS WHERE YOU PUT THE INFO YOU WANT BEFORE THE SOCIALS
contactInfoDiv.innerHTML = `
<p>Email: admin@mwcpaa.com</p>
`;
// Find the social media section
var socialFooter = document.querySelector(".social-footer-streamline");
if (socialFooter) {
socialFooter.parentNode.insertBefore(contactInfoDiv, socialFooter);
}
});
</script>