Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS At my wit’s end with IE 8!!! Re: At my wit’s end with IE 8!!!

#84271
Mottie
Member

Hi Whitness!

I think part of the problem might be the “>” in the page title, try switching it to “>”… IE likes to choke on that sort of stuff. My IE kept crashing for some odd reason.

Another problem I found is on the services page, the right image isn’t where it is supposed to be. I’ve run into a problem in IE8 when using negative margins.

#photoreel img:nth-child(2) {
margin: 0 0 0 -2px;
}

So maybe switch this to something like this:

#photoreel img:nth-child(2) {
position: relative;
top: 0;
left: -2px;
margin: 0;
}

The mega menu problem might just be the background color. I see this in the “normal” css (the rgba), but no corresponding definition, not using rgba, in the “ieservices.css” file, or maybe I missed it.

#nav li.mega div {
background-color: rgba(255, 255, 255, 0.87);
}