CSS code to remove the following block of text from the "plugins" menu?
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.
선택된 해결법
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.
문맥에 따라 이 답변을 읽어주세요 👍 0모든 댓글 (3)
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.
선택된 해결법
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.
Removing the top piece took care of it.
Thank you.