(function() { let container = document.getElementById("header-contact-container"); fetch("https://pearllemonweb.com/headercontactinformation") .then(response => response.text()) .then(html => { let parser = new DOMParser(); let doc = parser.parseFromString(html, "text/html"); let contactInfo = doc.querySelector("#HeaderContactInformation"); // Extract the section if (contactInfo) { container.innerHTML = contactInfo.outerHTML; // Wait for content to load, then apply styles setTimeout(() => { let elements = container.querySelectorAll(".elementor-icon-list-items.elementor-inline-items"); elements.forEach(el => { el.style.color = "white !important"; // Ensure text color is white }); }, 100); // Small delay to ensure elements are loaded } }) .catch(error => console.error("Error fetching contact info:", error)); })();

Main Trends that Will Boost your Web Design in 2025

32

What will web design trends be in 2025? As we enter a new decade, this question is on many designers’ minds. So we collected some predictions for web design trends in 2025. Come along! 1. Minimalist design Minimalist design has been on the rise in recent years and shows no signs of slowing down. In […]