Reputation: 1695
I'm trying to style the content currently in black under the Upcoming Events heading. I've tried every combination of .vevent-item odd event-1 .description .event-time .event-label
I thought might work to no avail. Any ideas?
It should match my other <p>
content.
Upvotes: 0
Views: 38
Reputation: 106
For me, just adding the following code into the <head>
style tag does the job.
#main div.content div.event-item {
color: #fff;
}
Upvotes: 0
Reputation: 419
If you are looking to style the following parts: https://i.sstatic.net/cLYec.png
Why not add a new class to those div's? For example:
<div class="event-time foo">...</div>
<div class="foo">...</div>
And in your .css file:
.foo {
background-color: red;
}
Upvotes: 1