I have an asp.net project that looks exactly like I want it to when I run it in IE 11 via localhost, but when I move it to a remote server the styling breaks down. Examples: Bootstrap doesn't load correctly -- I'm using some of the col-md classes to style table column widths. They load fine locally, but not remotely. Also, CSS 3 styling rules aren't handled. Things like transparent backgrounds and border-radius settings are ignored. Again, these CSS rules run fine in IE 11 via localhost.
I've checked everything I know to check: Same web browser (obviously), same version of IIS on my local machine as on the server (IIS 7.5.7600.16385). My application pool settings locally versus remotely are almost the same -- the only difference is that on the server, the "Load User Profile" setting is set to "False". On my local machine it's set to true.
The only difference that I can see is OS: my local box is running Win 7, while the server runs Win Server 2008 R2. I have made sure that all my project files are getting copied to the server correctly.
Firefox and Chrome aren't experiencing this issue. Is there something else I can check to figure out why this is going on?