Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active June 1, 2024 14:46
Show Gist options
  • Save Richienb/92ed3443519f782cbc73143b190b238b to your computer and use it in GitHub Desktop.
Save Richienb/92ed3443519f782cbc73143b190b238b to your computer and use it in GitHub Desktop.
Remove 000Webhost Branding For Wordpress CSS Code
img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {display: none;}
@LxaNce-Hacker
Copy link

<script>document.querySelectorAll('a[href*="000webhost"]').forEach(e => e.remove());</script>

Guy's Try It

@fripokoff
Copy link

fripokoff commented Apr 13, 2024

Hi this work for me
document.body.outerHTML = document.body.outerHTML.replace("</body>", "<!-- </body> -->");

@loSpaccaBit
Copy link

work....

window.addEventListener('load', function () {
    console.log('👿');
   // select div of banner if changed inspect page and find `<div>` of banner
    var _banner = document.querySelector("div[style='text-align: right;position: fixed;z-index:9999999;bottom: 0;width: auto;right: 1%;cursor: pointer;line-height: 0;display:block !important;']");
    _banner.style.display = "none";
});

@sonumishrAA
Copy link

code worked
thankew

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment