我们的网站有一个stylesheet.css和一个custom.css - 在我们的平台上,我只能访问custom.css。
我在custom.css中有一些覆盖,但它们只显示在某些页面上。
请参阅http://www.daysjewelers.com(由custom.css控制的背景等) 请参阅http://www.daysjewelers.com/category/engagement_rings_and_wedding_rings.do,并且不存在css覆盖。
以下是覆盖:
body.main {
background: #fff url(http://www.daysjewelers.com/images/en_US/global/globalgraphics/main_bg.gif) repeat;
}
.mainLayoutTable {
background: #fff;
padding: 10px;
border: 1px dashed #c0ddea;
margin-top: 15px;
}
我已经刷新了我的浏览器缓存,想法?
答案 0 :(得分:2)
答案 1 :(得分:1)
定义自定义CSS样式的最佳方法是在您的css声明中添加!important
行。你的代码看起来像这样:
body.main {
background: #fff url(http://www.daysjewelers.com/images/en_US/global/globalgraphics/main_bg.gif) repeat !important;
}
编辑:仅仅是一个FYI,我已经使用Firebug在您的网站上测试了它,它确实有用。