Reputation: 41
I have this text, once I include some vuejs extension. I need the extension badly but it seem that it cause some text to display on my footer.
Is there any hack to remove it?.
Please check immediately after my footer, there some text there.I don't have editing tool to edit the image.
Please help
Upvotes: 1
Views: 422
Reputation: 1015
You could use some CSS to simply hide it. It might not be ideal, but could work just fine depending on your situation.
.footer{
display:none;
{
Upvotes: 1
Reputation: 116
you can use JavaScript to remove that div element.
let footer = document.getElementsByClassName("footer");
footer.remove();
Upvotes: 0