开发者

My site doesnt load on safari and IE? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

This is my site, [redacted]. Don't say im trying to scam you, or get clicks. It's my site, and it WI开发者_JAVA百科LL work when im complete with it. The problem is, that it doesnt load on safari or IE, but works perfectly in chrome and firefox. Does anyone know the cause to this problem?


Download Firebug for firefox that will help you debug it.

Remember different browsers will display things differently, especially IE :)

Just a quick google search here might help And here


Right at the end of your head tag, you have:

#themeswitcher ul {
    list-style: none;
}</style>
</head>

But you opened a comment with <!-- at the start of that style tag. Add --> at the end to close the comment. Like this:

#themeswitcher ul {
    list-style: none;
}
--> </style>
</head>

It then works in Safari, and should work in other browsers.


Your HTML is very invalid. Try fixing the errors and seeing if that helps.


for one thing the source code in IE has multiple body and head tags. It may be possible you have other broken html tags in there as well.

As Andrew said, clean it up first then check into it.

Something like an unclosed div on one of those dynamically driven divs would be invalid in IE and any other literal browser.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜