htmlcssfreshdesk

Can i hide a div without a class or id? (Freshdesk)


I'm creating a support site with Freshdesk. Now i have a problem that there is an empty bar under my footer. I find out that this is because of a div that is nowhere to be found in my own code. this div has no class and no id and is not in another div or section. So I can't call it in my css to delete it and I can't give it a class or id. I also cannot find this div if I do "display frame source" but I do see it when I do "inspect element". Someone know a way how i can solve this?

This is wat i see when i do element inspection

This is what i see when i do display fram spource

This is the empty bar under my footer

If you need more information please tell me.


Solution

  • You can select a HTML element by an attribute. In your case, [rel] would probably be best.

    div[rel=tmpClipBoard] {
       display:none;
    }