Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 3 trả lời
  • 1 gặp vấn đề này
  • 10 lượt xem
  • Trả lời mới nhất được viết bởi 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.
Đính kèm ảnh chụp màn hình

Giải pháp được chọn

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.

Đọc câu trả lời này trong ngữ cảnh 👍 0

Tất cả các câu trả lời (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

Giải pháp được chọn

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.