Last active
July 27, 2024 19:34
-
-
Save Richienb/92ed3443519f782cbc73143b190b238b to your computer and use it in GitHub Desktop.
Remove 000Webhost Branding For Wordpress CSS Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {display: none;} |
Hi this work for me
document.body.outerHTML = document.body.outerHTML.replace("</body>", "<!-- </body> -->");
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";
});
code worked
thankew
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Guy's Try It