Firefox 3! Get it while it’s hot!

          0 votes
June 17th, 2008

Get it while its hot! ... or at least try :-P This morning when I woke up and started firefox I noticed it asking if I wanted to update to the latest version. Naturally I agreed but it failed to connect and download. I wonder if this is because a lot of people are trying to download or they were in the process of still updating the their links? I tried to update my browser from work as well and had the same issue but fear less you can download it just find from the site :-)

www.GetFirefox.com

New features include:

  • Noticeable Speed Improvments
  • Better Security
  • Enhanced Productivity
  • More Customization

... and more but you'll just have to download to see for yourself ;-)

Also for those of you not wanting to upgrade because your favorite plugins aren't compatible yet, well there is a solution... sorta... With the nightly tester plugin you can enable older Firefox plugins you have installed to work with your newer version of Firefox. There is no guarantee and you might experience some quirks since its meant only for development and testing purposes but I've enabled some older plugins for Firefox 2 and haven't noticed any problems but that doesn't mean you won't either. Just depends.

Anyways, Enjoy!

Share/Save/Bookmark

Auto-Hide Your Firefox Toolbars

          0 votes
April 21st, 2008

I love my viewing space, I have a huge 23" Apple display and I always try to get the most out of it however I can! I always have to make all my tool bar icons small and get rid of the ones with least relevance. Anyways, getting back on the ball here's the little tip I figured out earlier today how to hide your bookmarks bar.

Auto-Hide Firefox Toolbar

So first thing we gotta do is edit our userChrome.css. If you don't want to get your hands dirty with figuring out that userChrome stuff in the link then you can also download an extension for Firefox called ChromeEdit Plus.

#PersonalToolbar{display:none;}
#navigator-toolbox:hover > #PersonalToolbar{display: -moz-box;}

Pop the above code in your userChrome.css file and restart and walla! All of sudden you got an auto-hiding bookmarks bar!

If you want you can also get rid of the navigation bar. For that you can apply the code below:

#nav-bar{display:none;}
#navigator-toolbox:hover > #nav-bar {display: -moz-box;}

Unfortunately hiding the navigation bar doesn't really work for us Mac users because that would mean the whole navigator tool bar (which means the bar holding File, Edit, View, etc...) is gone and there is is nothing to hover over to show it to us again. However it works for Windows and *nix users :P .

Now as your journey here has ended I thought I would be nice and give you a few links that might help you continue your journey on your own.

Here are some common userChrome element name IDs that might be helpful. Also the DOM inspector is an extremely powerful tool which would let you not only inspect a web site's DOM but also Firefox so you can completely customize it using your userChrome.css file. It ships with the default install for people using Firefox 2 and below. For Firefox 3 and above you'll have to manually install it from this addon page.

Share/Save/Bookmark