Dear all,
I am using firefox in RedHat Linux and I want to remove the option "Save Page As" from File Menu.I am using the code as belows in userChrome.css. I can remove all the options. but i unable to remove the Save Page As option. Any one can solve this, kindly post ur suggestion.
Code:
to remove that. but it's not working.
Thanks & Regards,
Karunanidhi.
I am using firefox in RedHat Linux and I want to remove the option "Save Page As" from File Menu.I am using the code as belows in userChrome.css. I can remove all the options. but i unable to remove the Save Page As option. Any one can solve this, kindly post ur suggestion.
Code:
Code:
#urlbar,#searchbar
{
display:none;
}navigator-toolbox
{
display:none;
}
#PersonalToolbar
{
display:none;
}
.tabs-newtab-button
{
display:none;
}
menu[label="Edit"]
{
display:none !important;
}
menu[label="View"]
{
display:none !important;
}
menu[label="History"]
{
display:none !important;
}
menu[label="Bookmarks"]menu[label="Tools"]
{
display:none !important;
}
menu[label="Help"]
{
display:none !important;
}
menuitem[label="New Window"]
{
display: none;
}
menuitem[label="New Tab"]
{
display: none;
}
menuitem[label="Close Window"]
{
display: none;
}
menuitem[label="Close Tab"]
{
display: none;
}
menuitem[label="Work Offline"]
{
display: none;
}
menuitem[label="Print Preview"]
{
display: none;
}
menuitem[command="Browser:OpenLocation"]
{
display: none;
}
menuitem[command="Browser:OpenFile"]
{
display: none;
}
menuitem[command="Browser:SendLink"]
{
display: none;
}
menuitem[command="cmd_pageSetup"]
{
display: none;
}
menuitem[command="cmd_print"]
{
display: none;
}
menuitem[oncommand^="BrowserImport();"]
{
display: none;
}
#context-savepageas
{
display: none !important;
}
menuseparator
{
display:none;
}
I am using this code
#context-savepageas
{
display: none !important;
}
Thanks & Regards,
Karunanidhi.
Comment