Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
i'm sorry, my english not to good...i'm from Indonesia (do u know??)
i'm using a firefox browser in my ubuntu distro...
how can i hide my menubar but not all of them
(i've already tried it, but i hide it all)
i only need the "file menu", that's it..
this is the step that i do...
first i copy userChrome-examples.css to userChrome.css
I edit userChrome.css file at my profile..(/home/myprofile/.mozilla/firefox/itcanbeanything.default/chrome/userChrome.css)
and then i write down a new snytax..
menu,menuitem {
display: none;
}
and it works..but,,back to the top..i only need the "file menu"
last question...how can i adding a new "quit icon" at the toolbar,but i don't want to use an extension or an add-ons...
please help me..it's very important..
Some people like to place all their toolbar items on the same row as the menu. In order to save horizontal space, you can remove top menu items that you don't use. Add the following code to your userChrome.css file:
/* Remove the Go and Help menus
Id's for all toplevel menus:
file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */
#go-menu, #helpMenu {
display: none !important;
}
In my userChrome.css, I've used the following, which works:
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.