Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE 11 CSS Not Being Applied

I am working on a site that is close to going live and one of the issues I am running into is the CSS on IE 11. The CSS looks as it should on Chrome, FF, IE 8-10, however when running on IE 11 it appears as if some of the styles are not applied. I do not have a public link or I would share that. I know these are style definitions that are accepted by IE 11, because I tested them on w3schools.com

One basic example is I have is the following (fiddle)

<td class="aboutDNRHome" rowSpan="1" colSpan="1"> ... rest of code

.aboutDNRHome
{
    background-color: #f9f9bc;
    /*background-color:Red;*/
    width: 295px;
    padding:5px;
    vertical-align: top;
    text-align: left;
    margin-right:5px;
    margin-top:3px;
    line-height: 1.2;
}

I have verified that the html is valid. While using the developer tools (F12) I cannot see the class when selecting the appropriate element. Normally I would say that I have a poor CSS selector, but in this case it is a class and there is little room for error.

I am working on an Orchard CMS version 1.7.0.0. I know there is a newer version, but the installation is actually on the clients machine and they are the ones that control upgrades etc.

Has anyone else run into style issues with IE11? If so, what were the steps you took to resolve them. If you have any suggestions of what else I can try to narrow down the issue, please feel free to give those too.

like image 623
JabberwockyDecompiler Avatar asked Oct 03 '22 02:10

JabberwockyDecompiler


1 Answers

I GOT IT!!! I used Fiddler2 to clear the cache. I had been clearing the history over and over and I used to use Ctrl-D in the F12 developer tools to clear the browser cache with IE10, but I have not been able to find that with IE11. That was the issue though, stagnant files.

Note: Ctrl + F5 was not taking care of the cached files either, only the Fiddler2 clear cache was what worked.

like image 200
JabberwockyDecompiler Avatar answered Oct 13 '22 12:10

JabberwockyDecompiler