What element do I use to add needed CSS to change the background color for the white text in Month view?
Here’s a screen shot:
http://www.hessel.org/wp-content/uploads/2017/03/Screen-Shot-2017-03-25-at-11.03.03-AM.png
Page is http://www.hessel.org/events/
Thanks,
Terry
Hey Terry,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top td .tribe_events {
background: #333 !important;
}
Hope this helps :)
Best regards,
Nikko
Nikko,
You ROCK!
One more detail request please.
There is a line or border separating multiple events on the same day. I need to control its color. CSS target please.
Here is a screenshot:
http://www.hessel.org/wp-content/uploads/2017/03/Screen-Shot-2017-03-26-at-7.07.17-PM.png
Hi,
You can see that each category has an exclusive class: http://prntscr.com/eovhs8 –
You need the class that you want to change and add this custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.tribe-events-category-adults {
border-left: 5px solid #fbfbfb !important;
}
You need to change the class for other category :)
Best regards,
John Torvik
Sorry I miscommunicated –
It is the horizontal line separating the events I want to control
http://www.hessel.org/wp-content/uploads/2017/03/Screen-Shot-2017-03-26-at-7.07.17-PM.png
Hi,
Try change the code I gave you from:
#top td .tribe_events {
background: #333 !important;
}
to:
#top td .tribe_events {
background: #333 !important;
border-bottom: 0 !important;
}
Let us know if this helps :)
Best regards,
Nikko
Nikko,
That removed the border.
I actually wanted the borer to remain, but change border color to white.
Hi,
Oh sorry for that you can use this code instead:
#top td .tribe_events {
background: #333 !important;
border-bottom: 1px solid white !important;
}
Best regards,
Nikko
Perfect!
Thank you and good night.
Terry
Hi Terry,
Glad we could help and thanks for using Enfold :)
Best regards,
Nikko