开发者

CSS Stylesheet Partially Loading on IE

开发者 https://www.devze.com 2023-03-28 01:31 出处:网络
I have a WordPress site that I recently moved from one domain to another (using my host\'s dotnetpanel).When it went live on the new domain, it does not show up correctly in Internet Explorer.Previous

I have a WordPress site that I recently moved from one domain to another (using my host's dotnetpanel). When it went live on the new domain, it does not show up correctly in Internet Explorer. Previously, i开发者_如何学Ct worked well in all browsers. Specifically, it seems like parts of the stylesheet are just being ignored. It works fine on all browsers tested except IE.


Try putting the code here in and testing to see if it fixes your problem. What parts look like they're being ignored?


Maybe you have to reinstall some of your plug-ins?

I guess there are some wrong paths in the database or config-files.

Try to search database by db-admin-tool and all the files with an advanced text-editor with the option to search automatically in all files at the same time.


As far as I can see the style sheets are applied.

You have width: 100% and height: 100% on the links in the menu, which messes with their size in IE. Remove those styles.

The reason that the gradients doesn't show up is because they are filters, and the elements has to have layout for the filters to apply.

The object that the filter is applied to must have layout before the filter effect will display. You can give the object layout by setting the height or width property, setting the position property to absolute, setting the writingMode property to tb-rl, or setting the contentEditable property to true.

Ref: http://msdn.microsoft.com/en-us/library/ms532997%28v=vs.85%29.aspx

If you give the elements layout, the gradients will show up, for example:

.block h2 { width: 100%; }
0

精彩评论

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

关注公众号