/* Add custom Js styles below */ // Wait until the DOM is fully loaded document.addEventListener("DOMContentLoaded", function() { // Select the container that holds the h3 const container = document.querySelector('.store-footer__inner .lg\\:col-span-2 a'); if (container) { // Create a new image element const img = document.createElement('img'); img.src = 'https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/VNEVd/fvV3P2KMdat2AiFyxLstP8kI4XgC1oHptfP2zjxJ.png'; // 🔹 Replace with your actual image URL img.alt = 'ذبايح الشيف'; // Insert the image before the h3 element const heading = container.querySelector('h3'); if (heading) { container.insertBefore(img, heading); } } }); document.addEventListener("DOMContentLoaded", function() { // Select the existing span element const oldSpan = document.querySelector('.text-sm.copyright-text'); if (oldSpan) { // Create a new span element with your custom HTML const newSpan = document.createElement('span'); newSpan.className = 'text-sm copyright-text'; newSpan.innerHTML = `
`; // Replace the old span with the new one oldSpan.replaceWith(newSpan); } });