|
|
| Welcome to the Mac Forums forums. Please read the FAQ if you have questions. Register to participate. |
|
|||||||
| TouchArcade.com - iPhone Game Reviews and News |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
|
|
#1 |
|
Contributor
Join Date: Feb 2003
Location: with Hamburglar.
|
Web browser marketshare
Does anyone know of any authoritative resources for finding browser marketshare or userbase? I have found different examples #1 and #2 that have very different results.
A component to a page that I am designing doesn't like IE6, but plays nicely with all other browsers including IE7. I'm trying to gauge what kind of impact this would have -- as in, how many people still use IE6?
__________________
Canon 1Ds Mk III Canon 5D MkII 16-35mm f/2.8L II 24-70mm f/2.8L 70-200mm f/2.8L IS 50mm f/1.2L 85mm f/1.2L 135mm f/2L 300mm f/2.8L IS |
|
|
|
|
|
#2 |
|
macrumors 68020
Join Date: Jan 2002
Location: Orlando, soon to be Chiba
|
The IE 6 results there aren't different enough to make a difference in your coding. There's still a heck of a lot of people out there using IE 6. Unless you can look at your personal web hosting statistics and see that you're only getting, oh, less than 3% or so IE 6 users, then I'd say you need to make it work for them. It's far more common than most other web browsers, apparently only lagging behind IE 7 in both of those (IIRK).
jW
__________________
My Googlepage: Serenity Icons and More! |
|
|
|
|
|
#3 |
|
macrumors 6502a
Join Date: May 2007
Location: Denver, Colorado
|
If it's a design based problem and you're using CSS you can prefix an attribute with an underscore, which only IE6 will use. For example sometimes there's problems involved with windows horrible implementation of the box model, so sometimes css like this can be useful...
width:600px; _width:590px; Also, here's some stats on my website, which might be helpful to you, my users are more or less technically inclined. Also, AwStats doesn't differentiate between IE6 and IE7, so this won't be terribly helpful in that regard. Firefox 54.3 % MS Internet Explorer 29 % Opera 7.7 % Wget 5.3 % //Internal Use ![]() Safari 1.6 % Mozilla 1.4 % iBrowse 0.1 % Camino 0 % // Rounded, some use. Netscape 0 % // Rounded, some use. |
|
|
|
|
|
#4 |
|
macrumors member
Join Date: Jul 2005
Location: Europe
|
As said before, that totally depends on the page you're running.
For example: If you have an apple fan-page like macrumors.com you'll get less IE6 traffic compared to a page where the average user surfs: hotmail.com. Best will be to find out your statistics.
__________________
MBP 2.33 |
|
|
|
|
|
#5 | |
|
Thread Starter
Contributor
Join Date: Feb 2003
Location: with Hamburglar.
|
Quote:
It seems like a familiar problem to folks here. The dash model [width:600px; _width:590px;] sounds VERY promising. Is there a resource on how to implement that? (I doubt that it's as simple as "IE6 always reads "_width" and no other browsers do". THANKS SO MUCH!
__________________
Canon 1Ds Mk III Canon 5D MkII 16-35mm f/2.8L II 24-70mm f/2.8L 70-200mm f/2.8L IS 50mm f/1.2L 85mm f/1.2L 135mm f/2L 300mm f/2.8L IS Last edited by Grimace : Jun 16, 2007 at 12:02 PM. |
|
|
|
|
|
|
#6 | |
|
macrumors 6502a
|
Quote:
|
|
|
|
|
|
|
#7 |
|
Thread Starter
Contributor
Join Date: Feb 2003
Location: with Hamburglar.
|
hmm....well - the problem for me is that all of the CSS is controlled via some proprietary system [referenced] much higher up in the code. I know they use a bunch of IE6 hacks used to combat other problems.
__________________
Canon 1Ds Mk III Canon 5D MkII 16-35mm f/2.8L II 24-70mm f/2.8L 70-200mm f/2.8L IS 50mm f/1.2L 85mm f/1.2L 135mm f/2L 300mm f/2.8L IS |
|
|
|
|
|
#8 | |
|
macrumors 68000
Join Date: Aug 2005
Location: Nashville, TN
|
Quote:
__________________
-- epochblue rolls with a 20" Rev. D Intel iMac, a 15" Rev. C PowerBook, an 80GB iPod classic, 2G shuffle, and a 4GB iPhone. |
|
|
|
|
|
|
#9 | |
|
macrumors 6502a
|
Developing for IE6 is still very important. Windows users in general tend to be very slow at upgrading.
Quote:
|
|
|
|
|
|
|
#10 | |
|
macrumors 65816
Join Date: Apr 2007
Location: Germany
|
Quote:
Just use the following: Code:
<!--[if IE 6]> <link rel="stylesheet" type="text/css" href="css/ie.css" /> <![endif]-->
__________________
Cheers 2.33 C2D 15.4" MacBook Pro 2GB RAM |
|
|
|
|
|
|
#11 | |
|
macrumors 68030
|
Quote:
Also, I'd trust W3Schools' stats more than "Market Share". But overall, you should always look at your audience. The more technical (or "nerdy") the audience, the more Firefox users you will have. The more Apple Fan Boys, the more Safari users you'll have. But since there will always be stragglers that are forced to use IE6 because of IT lockdown in large corporations or Universities, it will always be best to learn how to do things right and just support everyone.
__________________
Scribbls - a collaborative drawing community designed to combine drawings into outcomesno talent required.
|
|
|
|
|
|
|
#12 |
|
macrumors 6502a
|
Who thinks they are new?
|
|
|
|
|
|
#13 |
|
Contributor
Join Date: Nov 2005
Location: Oxford, UK
|
Why? That seems totally crazy.
W3Schools's stats are just for their site, so they'll have a bias towards web developers, which means the data is highly likely to be biased. Hitslink's data is for lots of sites with a wide variety of different subjects so their data is likely to be better. |
|
|
|
| Eraserhead |
| View Public Profile |
| Find More Posts by Eraserhead |
|
|
#14 |
|
Thread Starter
Contributor
Join Date: Feb 2003
Location: with Hamburglar.
|
huh, it does like the box model problem. My content is 800px wide (photo gallery!) but IE6 needs to have it be 780px or so to fit correctly.
Here is the top of my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> I'll keep playing around with things...thanks for all your help so far!!
__________________
Canon 1Ds Mk III Canon 5D MkII 16-35mm f/2.8L II 24-70mm f/2.8L 70-200mm f/2.8L IS 50mm f/1.2L 85mm f/1.2L 135mm f/2L 300mm f/2.8L IS |
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|