Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

UserChrome.css Hide Bookmarks Toolbar Context Menus

  • 2 antwoorden
  • 1 heeft dit probleem
  • 147 weergaven
  • Laatste antwoord van hijacks

more options

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about.

I use Firex 83

Thank you.

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about. I use Firex 83 Thank you.
Gekoppelde schermafbeeldingen

Gekozen oplossing

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

Add 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 */

#placesContext { display: none !important; }

Dit antwoord in context lezen 👍 1

Alle antwoorden (2)

more options

Gekozen oplossing

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

Add 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 */

#placesContext { display: none !important; }

more options

cor-el said

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library). Add 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 */

#placesContext { display: none !important; }


Many thanks. That was exactly what i was looking for and didn't found after search for days.