table headings with the class="info" style

Hi guys. I just joined, and I’m getting started on a shrine for Persona 2: Batsu.

I’m using the site’s templates for tables, but as I’m going to have a few really, really long tables, so I want to break them up with different-colored headings to mark the sections. However, when I upload them and the site’s CSS styles are applied, my heading colors get over-ridden by the regular background graphic.

Is there any way around this, or does the CSS style have its own heading style that I can apply?

Thanks.

You can assign your own heading styles to them and just use [tr class=“myClass”] for the row with the headings you want different than the default ones. The CSS selector would be

tr.myClass th {…}

Thanks, that’s a big help.