Favourite browser (January - June 2011)

Discussion in 'polls' started by 3GUSER, Jan 3, 2011.

?

Which is The Browser (January-June 2011)

Poll closed Jul 2, 2011.
  1. Internet Explorer 9

    7.3%
  2. Internet Explorer (older version)

    6.1%
  3. Mozilla Firefox 4

    22.2%
  4. Mozilla Firefox (older version)

    18.0%
  5. Opera 11

    16.5%
  6. Opera (older)

    0.8%
  7. Google Chrome dev/beta

    4.6%
  8. Google Chrome (stable)

    18.0%
  9. Safari 5

    0.8%
  10. Safari (older)

    0 vote(s)
    0.0%
  11. Other (which one?)

    5.7%
  1. act8192

    act8192 Registered Member

    Joined:
    Nov 9, 2006
    Posts:
    1,789
    Opera 11 now. Earlier Operas over past several years.
    Simplest for me to customize each site permissions and global permissions than FF or IE8.
    Sometimes SeaMonkey but haven't learned that one yet.
    One site I use is illiterate in Opera. so IE8 is used there.
     
  2. Konata Izumi

    Konata Izumi Registered Member

    Joined:
    Nov 23, 2008
    Posts:
    1,557
    Firefox 4 Beta 12 :thumb:
     
  3. firzen771

    firzen771 Registered Member

    Joined:
    Oct 29, 2007
    Posts:
    4,815
    Location:
    Canada
    i like Opera but too many website incompatibilities with it and limited extensions (same for chrome with limited extensions) so i like firefox 4 the best
     
  4. Trooper

    Trooper Registered Member

    Joined:
    Jan 26, 2005
    Posts:
    5,507
    Firefox (Current version).
     
  5. Carver

    Carver Registered Member

    Joined:
    Feb 5, 2006
    Posts:
    1,910
    Location:
    USA
    I noticed a couple of website incompatibilities too, I am thinking about trying chromeplus.
     
  6. dw426

    dw426 Registered Member

    Joined:
    Jan 3, 2007
    Posts:
    5,543
    I'm enjoying Firefox 4 Beta 12 so far. There are a couple of UI issues I'm not fond of, but overall, it feels so much more responsive than Firefox has in a long time.
     
  7. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
    What are those, if you don't mind? They may be curable.
     
  8. dw426

    dw426 Registered Member

    Joined:
    Jan 3, 2007
    Posts:
    5,543
    I haven't played with the settings much, so I'm sure I'm complaining over nothing, but I'm not fond of having the reload and home buttons tucked away over into the corner. I haven't seen a way to change that yet, after a quick trip through options. A strange complaint for sure, but can the tab sizes be made a bit smaller? I kind of feel like I'm looking at a bunch of those yellow office folders when I look up there :D
     
  9. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
    For the first one, if you right-click right near the top in a vacant spot, you should get a "customize" option. Choosing that will give you a screen into which you can drag what you don't want or you can drag what you want from there onto a spot you like on the tool bars.

    Similarly, you can grab a hold of any button and drag it to where you want it and release.

    The second point about the tab height will require tinkering with userChrome.css. Maybe we should start a thread on tweaking Fx4 since there are just so many visible differences between 3.6 and 4.
     
  10. dw426

    dw426 Registered Member

    Joined:
    Jan 3, 2007
    Posts:
    5,543
    Thanks for helping me out with the button issues, I guess I'm picky when it comes to toolbar placements and such, lol. The tabs issue wasn't about the height, it was more the length of them. They truly do look like the tops of office folders :D I'm too picky I think, lol. In time I'll no longer care, it's just new and my eyes are adjusting to the differences.
     
  11. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
    This bit of code will let you tweak the tab height:
    Code:
    #TabsToolbar
    {height: 24px !important; }
    This goes in the userChrome.css file which is a plain text file and maybe a hidden file in a hidden folder with a path like this:
    C:\Documents and Settings\UserName\Application Data\Whatever\Mozilla\Firefox\randomstring.default\chrome\userChrome.css.

    The underlined part will depend on your OS. I'm not sure about the part in italics since I've set up things to be on the E: drive.

    randomstring.default will be your profile folder.

    The "chrome" folder may or may not exist. If it doesn't, you need to create it.

    The userChrome.css file may or may exist. Or, there maybe a file (if there's a pre-existing folder called "chrome") called userChrome-example.css. In which case, one may make a copy of that file and rename the copy simply userChrome.css.

    For the specific purpose of tweaking the tab height the entire contents of the userChrome.css file will be as follows:

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    #TabsToolbar
    {height: 24px !important; }


    Don't ask me why but the first line is totally necessary for userChrome.css to work.

    Each time you edit the userChrome.css file, you will need to save it and restart Fx for the change to take effect.
     
  12. dw426

    dw426 Registered Member

    Joined:
    Jan 3, 2007
    Posts:
    5,543
    I'll give that a shot, thanks a lot Vasa :)

    Edit: I finished the reply before you added your other post. I'll test it all out, thanks!
     
  13. Sadeghi85

    Sadeghi85 Registered Member

    Joined:
    Dec 20, 2009
    Posts:
    747
    Tab Width:

    about:config -> browser.tabs.tabMinWidth & browser.tabs.tabMaxWidth
     
  14. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
    Just checked. It's not in my Minefield. Which version has it?
     
  15. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
  16. Sadeghi85

    Sadeghi85 Registered Member

    Joined:
    Dec 20, 2009
    Posts:
    747
    Yeah, right. I have Tab Mix Plus add-on which creates those, I totally forgot about that.

    -http://tmp.garyr.net/tab_mix_plus-dev-build.xpi
     
  17. JRViejo

    JRViejo Super Moderator

    Joined:
    Jul 9, 2008
    Posts:
    97,985
    Location:
    U.S.A.
    vasa1, perhaps a review of Namespaces will indicate why it's needed.

    FYI. There is no data, there is only XUL (a Ghostbusters movie playful reference). Also, see: XUL (XML User Interface Language).
     
  18. vasa1

    vasa1 Registered Member

    Joined:
    May 1, 2010
    Posts:
    4,417
    Thanks for the links, JR! At least I can point others to them while mentioning that the line should be there.

    I so much prefer tweaking to get the effect I want rather than slapping on an add-on.
     
  19. JRViejo

    JRViejo Super Moderator

    Joined:
    Jul 9, 2008
    Posts:
    97,985
    Location:
    U.S.A.
    vasa1, you're welcome! Take care.
     
  20. Cvette

    Cvette Registered Member

    Joined:
    Apr 16, 2010
    Posts:
    373
    Location:
    South Carolina, USA
    Google Chrome for sure. Using anything else now just feels... weird.
     
  21. YanK33

    YanK33 Registered Member

    Joined:
    Jan 30, 2010
    Posts:
    195
    Chrome and IE9 RC are 2 great choices
     
  22. ashishtx

    ashishtx Registered Member

    Joined:
    Oct 7, 2005
    Posts:
    392
    Location:
    Houston,Texas
    Chrome Stable version since 2008 :)
     
  23. T_Durden

    T_Durden Registered Member

    Joined:
    Jun 9, 2010
    Posts:
    90
    Location:
    Chicago area
    Have been using Firefox 4rc recently because the current 3.X began to get a bit glitchy for some reason. 4rc helped but is still not as smooth as it used to be. Have never tried any browsers other than FF since I installed it 3 or 4 years ago so I am eager yet hesitant to download one for some reason. Chrome and Opera are looking like the ones to choose from.
     
  24. manOFpeace

    manOFpeace Registered Member

    Joined:
    Feb 1, 2003
    Posts:
    717
    Location:
    Ireland
    I'm an IE8 browser user. It seems that is as far as I can go being a XP Home SP3 user. But I'm in no hurry to change as all is well for me. :)
     
  25. Daveski17

    Daveski17 Registered Member

    Joined:
    Nov 11, 2008
    Posts:
    10,239
    Location:
    Lloegyr
    Personally I'm looking forward to giving Fx 4 a bit of a spin. I did try a couple of the betas. Don't overlook SRWare Iron.
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.