>Is there a way, to get rid off nearly all parts of the UI, like the
menubar, the toolbar, the icons at the bottom, just by editing a
configuration-file? Or must I recompile half of mozilla to have this
customized?
I added the following line to the userChrome.css file:
menubar, menubutton, menulist, menu, menuitem {
display: none; }
but it still displays the menubar. (File View Search Go etc..)
Am I doing the right thing .. or am I not doing something here?
Thanks,
Fatima
----Original Message-----
From: Neil [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 13, 2001 7:10 AM
To: [EMAIL PROTECTED]
Subject: Re: Customizing the UI
FR wrote:
>Is there a way, to get rid off nearly all parts of the UI, like the
menubar, the toolbar, the icons at the bottom, just by editing a
configuration-file? Or must I recompile half of mozilla to have this
customized?
>
If you know the ID of the part of the UI that you want to hide (I don't
know a good way of doing this other than looking through the XUL files
in comm.jar) you can add to your userChrome.css file (it goes in the
chrome subfolder of your user profile) e.g. to force the forward button
to be invisible
#forward-button { visibility: collapse; }
On some parts of the UI you may be able to use { display: none; }
instead because it is quicker when it works.