rtomasso
Member
Posted 1 year ago #
Very odd behavior I noticed. No matter what theme I'm using or what CSS I have defined for table.th, in the packages table for the event ticketing/sales page, the header text is always grey.
I can change everything else about the header cells and the text, just not the color, it's always grey. I can't find any css that's doing it based on the div that surrounds the table. Even when I switch themes which have a completely different color scheme or set the table.th color within syle.css, it always shows up grey.
http://wordpress.org/extend/plugins/wpeventticketing/
Hi,
You can add this to the plugin's stylesheet (ticketing.css):
#packages tr th {
color: #000;
}
Or you can add this to your theme's stylesheet (style.css):
#packages tr th {
color: #000!important;
}
That should do it...and obviously change the #000 to whatever color you want.
rtomasso
Member
Posted 1 year ago #
Doesn't work. Like I said it somehow seems to be hard-coded, but I can't find anything that's making it display as grey.
Ahh, the relavant item is:
#packages table tr th
So is this resolved for you?
I'll create a ticket to add this to the ticketing.css file during the next update.
djcarlson
Member
Posted 9 months ago #
I have a question about changing the font color on the Event page. The default is black and I need it to be white. I just need to know which stylesheet to change it on and where.
Thanks!
Have a look at /wp-content/plugins/wpeventticketing/css/ticketing.css
djcarlson
Member
Posted 9 months ago #
I found it using firebug. In the Style.css(line 65)
djcarlson
Member
Posted 9 months ago #