Page 1 of 1

Internet Explorer Help

Posted: Sat Jan 09, 2010 4:49 am
by mayon747
My site works fine (although the design is a work in progress :mrgreen: ) in Firefox, as expected, however when viewed in IE it has missing background images, the divs seem to overlap creating banner ads that are either too close or literally on top of each other on some of the pages, and in fact in Firefox you can see a black and gray striped background on the outer edges, and in IE the image itself is modified (same colors but a diamond pattern).

I was hoping someone would take a look at the code and see what tweaks I could make in order to resolve this IE issue?

Thanks

It would be helpful if I gave you my site: bridalhive.com

Thanks.

Scott

Re: Internet Explorer Help

Posted: Sun Jan 10, 2010 4:54 pm
by social_experiment
With which IE version are you viewing the page?

If with IE 6, you will have to create an alternate, seperate style sheet, as IE6 doesn't process css as FF does. Meaning dont test it with firefox, just on IE 6. Then create a stylesheet that works with FF and IE7 & IE8 and

Once you have done that, put this in the head of your HTML document :

Code: Select all

 
<link href="stylesheetForOtherBrowsers" rel="stylesheet" type="text/css" />
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" href="stylesheetForIE6" />
<![endif]-->
 
Try to use external stylesheets instead of embedded one's, it makes editing much easier.