Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

CSS code to remove the following block of text from the "plugins" menu?

  • 3 antwoorden
  • 1 heeft dit probleem
  • 2 weergaven
  • Laatste antwoord van Avengement

more options

Hello,

What is the CSS code to remove the following block of text from the "plugins" menu?

https://i.postimg.cc/vBjVcNCr/plugins-menu.jpg


Cheers.

Hello, What is the CSS code to remove the following block of text from the "plugins" menu? https://i.postimg.cc/vBjVcNCr/plugins-menu.jpg Cheers.
Gekoppelde schermafbeeldingen

Gekozen oplossing

cor-el said

Add code to the userContent.css file.
@-moz-document url(about:addons){
 #private-browsing-notice,
 #plugindeprecation-notice { display:none!important; }
}

Note that these two notices are gone in Firefox 68 and Firefox 68 will likely need other code as well for modifying other elements.

No dice.

The message is still present.

Dit antwoord in context lezen 👍 0

Alle antwoorden (3)

more options

Add code to the userContent.css file.


@-moz-document url(about:addons){
 #private-browsing-notice,
 #plugindeprecation-notice { display:none!important; }
}

Note that these two notices are gone in Firefox 68 and Firefox 68 will likely need other code as well for modifying other elements.

more options

Gekozen oplossing

cor-el said

Add code to the userContent.css file.
@-moz-document url(about:addons){
 #private-browsing-notice,
 #plugindeprecation-notice { display:none!important; }
}

Note that these two notices are gone in Firefox 68 and Firefox 68 will likely need other code as well for modifying other elements.

No dice.

The message is still present.

more options

Removing the top piece took care of it.

Thank you.