我即将结束Drupal 7网站构建并在浏览器中进行测试。除了IE 7和8之外,所有浏览器都可以正常使用 - 这似乎是一个常见的问题。
我已经阅读了很多关于IE 7& 8如何忽略超过31个样式表请求的内容。
我已经在Stackoverflow和互联网上找到了很多建议。
这些都没有奏效。
我还在我的template.php文件中添加了以下内容,以删除James Hopkins建议的某些Drupal CSS文件(我知道它说的是IE6,但是嘿,值得一试。
# get array of stylesheets
$css = drupal_add_css();
unset($css['all']['module']['modules/system/system.css']);
unset($css['all']['module']['modules/system/defaults.css']);
unset($css['print']['theme']['themes/mytheme/print.css']);
链接到网站 88.208.247.36 它仍然是ip格式,因为域尚未传递给网络服务器。
答案 0 :(得分:-1)
将此添加到您的clinigen.info文件中:
stylesheets-conditional[lte IE 7][all][] = _css/ie7.css
从main.css中删除它:
@import url("ie7.css");