Reputation: 2444
I'm in a completely disastrous situation right now.
According to Google Analytics, 96% of the users to my site are on Chrome & Firefox. However, we have one very important client coming on board at the beginning of next week ... and their entire organization will be using Internet Explorer.
I need some way of quickly making the core features of my site IE compatible. I can pay a consulting company if that is necessary, but I don't know the first thing about making my site IE compatible - I don't know the IE development tools and I don't know the first thing as to why IE doesn't render things properly.
What's the best way to go about solving my problem? I don't even see a firebug / inspect element equivalent for IE. I only will worry about IE 9 for now - this company is on the latest IE for sure.
Let me know, I'm totally panicked!
Upvotes: 5
Views: 411
Reputation: 7266
Below is my suggestion.
Consider using specific tags target IE. Like:
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
Consider using modernizer if your site uses HTML5 or CSS3.
I know this list will keep on and on. May be ask another question when you fall in specific problem. Good Luck.
Upvotes: 1
Reputation: 2325
If I were in your position I wouldn't modify the existing, working website page, I would duplicate it, make the changes to get it working in Internet Explorer and then make your website detect the browser they are using and load the appropriate working page. Considering you need to make these changes so soon, you don't want to risk changing something which messes up how the site is displayed in Firefox and Chrome.
Upvotes: -1
Reputation: 324810
As long as your site is valid HTML/CSS/JS and you don't use any browser-specific extensions, you should be good to go.
F12 will give you a full set of Developer Tools which can be very useful in finding and fixing stuff, so go ahead and use that. If you have any specific problems, I can certainly help you out with them.
Upvotes: 3