CSS 问题 - Background-Color 在 - Magento style.css 中没有响应

CSS issue - Background-Color not responding in - Magento style.css

我正在尝试更改购物车标题栏的背景颜色。

当我添加

background-color: #;  

.block-cart { 
 margin-bottom: 0px;
 margin-bottom: 0px;
 width: 165px;
 height: 30px;
 position: relative;
 top: -33px;
 right: 10px;
}

它显示了一条蓝线,但不是整个背景。

以下块似乎重叠 ^

.block-cart .block-title { 
     height: 7px;
     background-color: !important;

} 

^ 中的 background-color 元素根本没有改变颜色。我先尝试不使用 !important,但没有任何区别。

请就无法加载的原因提出一些建议或想法!

谢谢!

你有 height: 30px;。实际区块高度明显超过30px。删除该行应该可以解决问题。