/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { const containers = document.querySelectorAll('footer .container.grid div'); containers.forEach(function(div) { const link = div.querySelector('a[href="https://kharaz-sa.com/"]'); if (link) { const img = document.createElement('img'); img.src = 'https://cdn.salla.sa/form-builder/u3AdtJF153bhUtvuxmPRuDgLZGDS4IgJevFt0Hxm.png'; img.alt = 'Appended Image'; img.style.maxWidth = '150px'; div.appendChild(img); } }); }); const header = document.querySelector('header.store-header .main-nav-container .flex.items-center:first-child'); if (header) { const newHeader = document.createElement("div"); newHeader.className = "dan-logo"; newHeader.innerHTML = `
`; header.after(newHeader); } window.onload = function () { const target = document.querySelector(".copyright-text p"); if (target) { const newEl = document.createElement("div"); newEl.innerHTML = ` :designed by ddandesign `; target.after(newEl); } };