In
<
news:mailman.1068.142870727...@lists.mozilla.org>,
"Thee Chicago Wolf [MVP]" <"."@.> wrote:
> Presently, my userContent.css file is set up like so:
>
> #addons-page,
> div#contents button,
> window#config * {display:none !important;}
>
> It hides what I don't want users messing with well enough but I also
> wouldn't mind hiding about:support and about:plugins. I tried adding
> window#support * but it didn't make any difference. Probably the wrong
> element. Tried finding it with Element Inspector but it wasn't of much
> use. Google points to some info
> (
https://support.mozilla.org/en-US/questions/1001724) which doesn't
> work either.
>
> Anyone have some solid info on hiding these two menus?
This should work:
@-moz-document url("about:support") { * { display : none ! important } }
Or for a more comprehensive approach:
@-moz-document url-prefix("about:") { * { display : none ! important } }
I'm assuming the Firefoxes you want to cripple belong to you, not the
users you want to prevent seeing things.