Hello
Is the color you requested different in the column headers section of the league table?
Your question about why the title section isn’t colored seems to be due to a difference in CSS. Currently, in the league table you added in two parts, you use CSS as follows:
.sp-data-table th, .sp-template-countdown .sp-event-venue, .sp-template-countdown .sp-event-league, .sp-template-gallery .gallery-caption { background: #ffffff !important; }
while in the other page you specified as colored, you use CSS as follows:
Your question about why the title section isn’t colored seems to be due to a difference in CSS. Currently, in the league table you added in two parts, you use CSS as follows:
.sp-data-table th, .sp-template-countdown .sp-event-venue, .sp-template-countdown .sp-event-league, .sp-template-gallery .gallery-caption { background: #ffffff !important; }
while in the other page you specified as colored, you use CSS as follows:
.league-table-main .sp-data-table th { background: #e40f1b !important; color: white !important; padding: 20px 0px 20px 20px !important; font-size: 18px !important;font-family: 'Teko',Helvetica,Arial,Lucida,sans-serif; line-height: normal !important;}
is implemented as follows.
The table header appears white due to the background: #ffffff !important; you applied in your other tables. This option can be used wherever you want by adding the code to a class:
.league-standings-page .sp-data-table thead th { background: #e40f1b !important; color: #fff; }