0

现场直播。

我正在尝试在“即将到来的事件”标题下设置当前为黑色的内容。.vevent-item odd event-1 .description .event-time .event-label我已经尝试了我认为可能无济于事的每一种组合。有任何想法吗?

它应该与我的其他<p>内容相匹配。

4

2 回答 2

1

如果您正在寻找以下部分的样式:http: //i.imgur.com/BW4NR.png

为什么不向这些 div 添加一个新类?例如:

<div class="event-time foo">...</div>
<div class="foo">...</div>

在您的 .css 文件中:

.foo {
  background-color: red;  
}
于 2012-08-28T21:07:35.750 回答
0

对我来说,只需将以下代码添加到<head>样式标签中即可。

#main div.content div.event-item {
    color: #fff;
}
于 2012-08-28T21:01:45.140 回答