IE9 not showing my website properly

alfredb

New Member
Hi Guys - my website is not showing correctly on IE9. It appears all distorted and as text. See attachment.

On Firefox and Chrome it works ok.

Would anyone know why?
 

Attachments

Basti

Administrator
Staff member
Hello alfred
This is a bit hard to troubleshoot without actually seeing the website.

Most likely your server sent the wrong mime types for css files, or the file itself has some some malformation
Like ive seen on the web in a css file a comment like
Code:
/*=================
  Some text here
=================*/
Where it actually has to be
Code:
/******************
  Some text here
******************/
IE9 has some strict security where other browsers are more forgiving on these type of errors.

But all just speculation.
 
Last edited:

cajkan

Active Member
Works fine with IE11.
You screenshot tells us that website is loaded perfectly, but the stylings arent there = CSS

Did you tried to reload the page few times? Maybe the CSS isnt loaded
 

Basti

Administrator
Staff member
Sniffed around using IE developer tools, it appears it aborts the loading of the js and css file.

Not 100% sure but it appears the issue lays in your list url. Your list url " http://www.anunciatupaginaweb.com"
Notice there is whitespace before the http://

Which results in IE 8 and 9 trying to load this url
Code:
http://%20http://www.anunciatupaginaweb.com/skins/parabola/screen.css
As you see thats horrible wrong. That is part of IE's strict security as far as i know. Which other browsers seems to "fix"

So please go into admin panel and remove that whitespace from your list url. Then lets see if things work
 
Top