medosa Posted November 19, 2006 Share Posted November 19, 2006 is there extension for firefox 2.0 that auto hide bookmark tool bar i want ot works like autohide in taksbar of windows as it takes large space from my screen is there extension for this thanks in advance :whistle: Link to comment Share on other sites More sharing options...
Salgoth Posted November 19, 2006 Share Posted November 19, 2006 Are you sure its not related to whatever theme you are using? My bookmark toolbar takes up the same or less space as the tabs themselves. You could also just not use the bookmark toolbar and therefore get rid of it completely. Link to comment Share on other sites More sharing options...
medosa Posted November 20, 2006 Author Share Posted November 20, 2006 i use the default theme for ff2 and i like to use bookmark tool bar and wish to find this extension Link to comment Share on other sites More sharing options...
Jimmie Posted November 20, 2006 Share Posted November 20, 2006 Add this to userChrome.css: /* Auto-hide the Bookmarks Toolbar */ #navigator-toolbox #PersonalToolbar { display: none !important; } #navigator-toolbox:hover #PersonalToolbar { display: -moz-box !important; } Link to comment Share on other sites More sharing options...
Jase Posted November 20, 2006 Share Posted November 20, 2006 Add this to userChrome.css: /* Auto-hide the Bookmarks Toolbar */ #navigator-toolbox #PersonalToolbar { display: none !important; } #navigator-toolbox:hover #PersonalToolbar { display: -moz-box !important; } That worked perfectly! but is there a way to make it when you hover over that area it take at least 5 seconds to show, also is there a way to make it slide down like the effects in the add on/ Themes area? Link to comment Share on other sites More sharing options...
Jimmie Posted November 20, 2006 Share Posted November 20, 2006 That can't be done with CSS. It could be done with an extension- or with userChrome.js. I'll see what I can come up with later today. Link to comment Share on other sites More sharing options...
Jase Posted November 20, 2006 Share Posted November 20, 2006 Sweet thanks :) Link to comment Share on other sites More sharing options...
tony-inpo Posted November 20, 2006 Share Posted November 20, 2006 Add this to userChrome.css: /* Auto-hide the Bookmarks Toolbar */ #navigator-toolbox #PersonalToolbar { display: none !important; } #navigator-toolbox:hover #PersonalToolbar { display: -moz-box !important; } That's brilliant. nice one. Could you do the same with google tool bar? Link to comment Share on other sites More sharing options...
medosa Posted November 20, 2006 Author Share Posted November 20, 2006 Add this to userChrome.css: /* Auto-hide the Bookmarks Toolbar */ #navigator-toolbox #PersonalToolbar { display: none !important; } #navigator-toolbox:hover #PersonalToolbar { display: -moz-box !important; } thanks alot man this is greattttttttttttttttttttttttttttttttt WORK thanks a lot thanks a Lot ;) ;) ;) ;) ;) ;) ;) ;) ;) ;) this is what i was searching before could u explain to me how to make this i want to know the programming language u used to write this and i want good book in this language if u can do this for me and if u can explain to me this code to try to make other code for google tolbar for example thanks a lot man for your work could u make the bookmark toolbar appear after mouse stands for it after 2 seconds as it appear when mouse moves over it directly i want it to appear when mouse pause on it for 2 seconds thanks a lot man Link to comment Share on other sites More sharing options...
medosa Posted November 20, 2006 Author Share Posted November 20, 2006 -------------------------------- -------------------------------- Can i add more option to this like appear after the mouse pause for 2 seconds over it Or when i press CTRL Key -------------------------------- -------------------------------- thanks in advance Link to comment Share on other sites More sharing options...
primexx Posted November 20, 2006 Share Posted November 20, 2006 -------------------------------- -------------------------------- Can i add more option to this like appear after the mouse pause for 2 seconds over it Or when i press CTRL Key -------------------------------- -------------------------------- thanks in advance as said above, not with CSS. Grist do you know the ID/Class for the tab bar? I'm thinking it would be neat to try the same effect on that. Link to comment Share on other sites More sharing options...
Jimmie Posted November 20, 2006 Share Posted November 20, 2006 Sorry, I haven't had much time today to work on the Javascript necessary for autohide delays and such. When I do have more time, I'll let you know. could u explain to me how to make thisi want to know the programming language u used to write this and i want good book in this language if u can do this for me and if u can explain to me this code to try to make other code for google tolbar for example I'm in a bit of a hurry right now, but in brief: CSS is used to style the display of Firefox browser elements. The Stylish extension comes in very handy. This thread at mozillaZine has lots of discussion on the subject:http://forums.mozillazine.org/viewtopic.php?t=469248 See also: http://kb.mozillazine.org/UserChrome.css#Editing There are limits to what you can do with CSS, however. Changing the actual functions of browser buttons, adding new features, etc, require Javascript. For the Google Toolbar, try this: #navigator-toolbox #gtbToolbar { display: none !important; } #navigator-toolbox:hover #gtbToolbar { display: -moz-box !important; } I think "gtbToolbar" is the right ID; I don't have it installed. If you want to hide all toolbars except the menubar: #navigator-toolbox #toolbar-menubar ~ toolbar { display: none !important; } #navigator-toolbox:hover #toolbar-menubar ~ toolbar { display: -moz-box !important; } @Primexx Have a look at this style: http://userstyles.org/style/show/1262 It's a bit convoluted, but that can't be helped due to the location of the tab strip in the DOM- in relation to the tool bars. Link to comment Share on other sites More sharing options...
Recommended Posts