Uyo-obong Akpan
Uyo-obong Akpan

Reputation: 41

How to force remove text after footer in html

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?.enter image description here

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

Answers (2)

Michael Romrell
Michael Romrell

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

Raj
Raj

Reputation: 116

you can use JavaScript to remove that div element.

let footer = document.getElementsByClassName("footer");
footer.remove();

Upvotes: 0

Related Questions