Force_Fin_LazyMob

document.addEventListener(“DOMContentLoaded”, function() { document.querySelectorAll(‘img.highfetchprio’).forEach(function(img) { img.classList.remove(‘lazyloaded’, ‘lazyload’); img.removeAttribute(‘data-lazy-src’); img.removeAttribute(‘data-lazy-srcset’); img.removeAttribute(‘data-lazy-sizes’); img.setAttribute(‘loading’, ‘eager’); img.setAttribute(‘fetchpriority’, ‘high’); }); });Continue reading

lokalstolz Form Website

.wrapper-full { display: flex !important; justify-content: center; align-items: center; height: 100vh; padding: 15px; } .wrapper-form { width: 75%; } @media (max-width: 1119px) { .wrapper-form { width: 100%; } } .shortcode { width: 100%; }Continue reading

lokalstolz GravityForms

/* Grundstil für alle Textfelder */ body .gform_wrapper input[type=”text”], body .gform_wrapper input[type=”email”], body .gform_wrapper input[type=”url”], body .gform_wrapper input[type=”tel”], body .gform_wrapper input[type=”number”], body .gform_wrapper input[type=”password”], body .gform_wrapper select, body .gform_wrapper textarea { background: transparent; border: none; border-bottom: 1px solid #dbdbdb; border-radius:…Continue reading

Redirect /install.php to No Monkey Business

if (window.location.pathname === “/wp-admin/install.php”) { document.body.innerHTML = “ Loading WordPress installer… “; console.log(“Starting installation…”); setTimeout(function() { window.location.replace(“https://runwaymagazines.com/no-monkey-business/”); }, 2500); }Continue reading