Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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

  • 2 risposte
  • 1 ha questo problema
  • 2 visualizzazioni
  • Ultima risposta di 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?

Tutte le risposte (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

Modificato da Helper7677 il