Sugerencias

    (function () { function ensureSiteBrandingFix() { if (document.querySelector('.site-branding')) return; var fake = document.createElement('div'); fake.className = 'site-branding jw-site-branding-fix'; fake.setAttribute('aria-hidden', 'true'); fake.style.cssText = [ 'position:fixed', 'left:-99999px', 'top:-99999px', 'width:0', 'height:0', 'overflow:hidden', 'opacity:0', 'pointer-events:none', 'visibility:hidden', 'z-index:-1' ].join(';'); document.body.appendChild(fake); } function bootFix() { ensureSiteBrandingFix(); var observer = new MutationObserver(function () { ensureSiteBrandingFix(); }); observer.observe(document.documentElement, { childList: true, subtree: true }); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', bootFix); } else { bootFix(); } })();