我正在使用网站http://www.solstack.se 它适用于所有浏览器,但IE 8和9.在这些浏览器中,标题背景是不同的颜色。浅灰色或深灰色,具体取决于龙门后端模板中的设置。我需要这个透明但我无法弄清楚如何。我搜索了所有.less文件以找到要修改的正确代码,但没有运气。我想它,在某处编译。我还尝试在 gantry-custom.css 文件中添加覆盖。
我需要摆脱#rt-top-surround
:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffdddddd', GradientType=0)
background-color: rgb(241, 241, 241)
答案 0 :(得分:0)
您可以尝试在模板文件夹的index.php中执行以下操作:
<!--[if gte IE 8]>
<?php
$doc = JFactory::getDocument();
$css = '#rt-top-surround {background-color:none; filter:none; }';
$doc->addStyleDeclaration($css);
?>
<![endif]-->
这基本上说,如果使用的浏览器高于或等于IE8,则添加$css
变量中定义的CSS代码。
希望这有帮助