Comment to Remove " Powered by UNA " graphic
-
Add this code into the Head Injection:
Location: Studio>Designer>Injections
URL:
{{yourdomain}}/studio/designer.php?page=injections
"<head>
...
<style>
#bx-menu-footer > li.bx-menu-item.bx-menu-item-powered_by.bx-stl-mil-wo-bg-gaps {display: none;
}
</style>
...
</head>
<head>
...
<script>
window.onload = function() {
var element = document.querySelector("
#bx-menu-footer > li.bx-menu-item.bx-menu-item-powered_by.bx-stl-mil-wo-bg-gaps");if (element) element.parentNode.removeChild(element);
}
</script>
...
</head>"