Hiding doesn"t work

Hello,

I want to hide the widget Website Translator for smartphones and have inserted the following code into Custom CSS:

@media (max-width: 480px) {

  .global-styles,
  .elfsight-app-526515d6-d1c5-45a5-bbc5-df4bc6f99da7 {
    display: none !important;
}
}

Unfortunately, the widget is still displayed to me.
Link to Website

What am I doing wrong?
How can I solve this?

Thank you very much and best regards,

Thorsten
Werbeagentur Schulz-Design

Hi @Thorsten

try this code

@media (max-width: 480px) {
   [class*="background__Container-sc"] {
    display: none !important;
  }
}
1 Like