Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How do I disable (disappear) menuitem labels that have "..." suffix appended to them?

  • 2 replies
  • 1 has this problem
  • 1 view
  • Last reply by Helper7677

more options

This works in css

menuitem[label="New Window"] { display: none !important; }

to get rid of labels but when I try to get rid of something with "..." at the end such as "Print..." it won't work!

What is wrong?

This works in css menuitem[label="New Window"] { display: none !important; } to get rid of labels but when I try to get rid of something with "..." at the end such as "Print..." it won't work! What is wrong?

All Replies (2)

more options

The three dots are one ellipsis character: …

It is usually better to use the IDs of context menu items: #menu_print instead of menuitem[label="Print…"]

See also http://kb.mozillazine.org/kb.mozillazine.org/Chrome_element_names_and_IDs

more options

Modified by Helper7677