Hello @Moana33 ,
Please add this code to your theme.css file:
small.site-footer__copyright-content.site-footer__copyright-content--powered-by {
display: none;
}
Let me know if that works!
This is part of the free version of the app I believe, can't assist on that unfortunately as it would be breaching the agreement in place with the plan you've selected for Mobile Menu.
Well, if you don't care about any kind of agreement with Mobile Menu... you could hide it with javascript. You can set an interval for every half second to see if their element has appeared on the website yet, then hide it, and clear the interval. This can go in theme.liquid right before the closing </body> tag:
<script>
function checkForWaterMark(){
let menu = document.querySelector('.dmenu-watermark');
if(menu){
menu.style.display = 'none';
clearInterval(watermarkCheck);
}
}
let watermarkCheck = setInterval(checkForWaterMark, 500);
</script>
Oh I didn't know it is part of the free plan agreement with them, lol.
So I won't try to hide that, I will probably pay for the premium version
User | Count |
---|---|
498 | |
210 | |
130 | |
80 | |
43 |