How Do I Remove This Annoying HTML from my site?

Crazycam727

Power Member
Joined
Dec 24, 2019
Messages
785
Reaction score
947
This is a very quick fix and I can't seem to wrap my head around it.

I'm using groovepages and they've added a black bar at the bottom of my page, there's no settings to hide it within the pagebuilder.


Screenshot 2021-04-19 at 14.20.18.png


However, it is possible to add additional CSS to pages.

I'll PM the live site if it helps.

Thanks! :)
 
inspect the element, find out what it is, and then lookup hide css element code, its pretty simple, I can't remember shit like that, I don't have any braincells.
 
inspect the element, find out what it is, and then lookup hide css element code, its pretty simple, I can't remember shit like that, I don't have any braincells.
Yep, do like that and override in global css file class name of this element like

CSS:
.someClass {
    display: none !important;
}
 
Back
Top