Hi, Welcome back!
document.addEventListener("DOMContentLoaded", function () { function shrinkLogo() { document.querySelectorAll('svg[viewBox="0 0 108 24"]').forEach(svg => { svg.setAttribute("width", "1"); svg.setAttribute("height", "1"); }); } // Shrink on load shrinkLogo(); // Keep watching for DOM changes (in case TutorLMS redraws it) const observer = new MutationObserver(() => shrinkLogo()); observer.observe(document.body, { childList: true, subtree: true }); });
Skip to content