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 "over flow" menu box?

  • 2 trả lời
  • 1 gặp vấn đề này
  • 2 lượt xem
  • Trả lời mới nhất được viết bởi Avengement

more options

Hello,

Hello,

What is the CSS code to remove the "Over Flow" box from inside the customize preferences?

Please see attached image for reference.


Thanks in advance.

Hello, Hello, What is the CSS code to remove the "Over Flow" box from inside the customize preferences? Please see attached image for reference. Thanks in advance.
Đính kèm ảnh chụp màn hình

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

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu).

You can add this code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (2)

more options

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

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu).

You can add this code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}
more options

cor-el said

Note that removing this item from the customize palette window won;'t prevent moving items to this menu as you can move toolbar items in regular mode via the right-click context menu to this area (Pin to Overflow Menu). You can add this code to the userChrome.css file below the default @namespace line.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#customization-panelWrapper {display:none!important;}

I have already removed that context menu item so it's nothig that I'm worried about.

Either way, this was exactly what I was looking for.

Thank you kindly.