AMC
AMC

Reputation: 1695

styling elements of a plugin

Live site.

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

Answers (2)

Pixus.ru
Pixus.ru

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

jugglinghobo
jugglinghobo

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

Related Questions