Reputation: 15148
maybe it's completly my foult to handle so blind, but yes, now I am in a bad situation.
Since month I build an auctioneering platform, the deadline is getting shorter and now - at the end of the project - we do a browser test with older browsers (e.g. and the worst: ie6).
What should I say? The complete design fails in IE6. The logo is not transparent, the login button away in god knows where and the complete menu-bar 100px out of the monitor. In IE7, IE8, Opera 10 and FF3 all is very okay, no problem at all, almost perfect.
So, how I could handle with the fact that in IE6 my complete design is a simple fail? Any ideas to rescue my head? =)
Upvotes: 0
Views: 128
Reputation: 121424
First, don't panic. It's not that hard to get the layout working properly in IE6. A lot of stuff is possible with IE6 you just have to do things a bit differently. It doesn't take an awful lot of time to get a page IE6 compatible (most of the time).
Here are the main key issues off the top of my head:
clear:left
or clear:right
. Just use clear:both
.position: fixed
. You will have to live with that. You can try position: absolute
instead or some javascript but that will be really slow. (Let's just say, JavaScript execution speed is not one of IE6's great strengths).Good luck!
Upvotes: 3
Reputation: 13509
Have a look at this and maybe you can draw your own conclusions... Much Ado About IE6
Upvotes: 0
Reputation: 944445
The first thing to do is to learn an important lesson: when starting a project, find out if IE6 is a target platform and test during development, not at the end of the project.
Second, start fixing it. Add a new stylesheet for IE6 in a conditional comment and start overriding the broken parts.
Upvotes: 4
Reputation:
Unless you have a requirement to support IE6, drop it. No need to waste your time and energy to prolong the life of a dinosaur.
EDIT: Seems you have to support IE6. Then you have no other option as to start fixing it, step by step. Make sure you abstract and formulate precisely each problem you have with IE6. If you do, google will give you a workaround quickly.
Upvotes: 1