Need to overide bootstrap.min.css:10

I have an event plugin creating an event post. It has a table where you can choose a ticket and has an “add to cart” button at the end. The problem is the
<th>Ticket Type</th>
<th>Price</th>
<th>Qty.</th>
<th>Cart</th>
should be text-align: center but are getting overridden by bootstrap.min.css:10.

I tried !important and that didn’t work.

Here is the page so you can see what I’m talking about:
http://solanorepublicans.org/events/monthly-dinner/

You can see it using the browser inspector. If you turn the text-align: left to off, then it defaults back to text-align:center.

I’m new at troubleshooting the theme / plugin conflict here so I would be grateful for any help I could get on this.

Thanks!

Hey Josh,

Can you try adding the CSS snippet below and see if it’s what you’re looking for?

.tickera th {
  text-align: center;
}

Ben