Hi @efraim3000,
Thanks for your questions.
There is a built-in feature that might be useful for marking teams in tables. On Edit League Table pages, you’ll notice that a pencil icon appears when hovering over team names. You can click the pencil icon to change the name, or in this case, add a label to the team name. This field accepts HTML, so you can add something like:
<strong>Play-offs</strong>
The number of events per calendar can be adjusted via SportsPress > Settings > Events > Calendars > Limit (defaults to 5 events).
Glad to hear you’re enjoying the plugin. Hope this helps!
Thanks for quick reply!
In the case of marking tables I was thinking something like a permanent mark on the top two teams in some way. A different color, more marking line under those teams or in bold. But if i put in tags I must change the bold manually in all groups every time there is a change in the top?
Yes, I saw the limit change option, but that changes all the event lists? I was thinking if there was possible to have different numbers of events shown in different places. I saw when you make a widget event list you can choose the number of events shown, is this possible in any way in other event lists?
Thanks again for saving millions of hours!
Hi again!
That makes sense. Try adding the following code to SportsPress > Settings > Custom CSS:
.sp-league-table tbody tr:nth-child(-n+4) .data-name {
text-decoration: underline !important;
font-weight: bold !important;
}
.sp-league-table tbody tr:nth-child(-n+4) .data-name a {
color: red !important;
}
The first block of code will underline and bold the top 4 teams of the table. The second block will color the top 4 teams of the table in red.
Regarding event list limits, it’s currently available in widgets and as a global setting only. We’ll definitely look into adding an option to individual calendars in the future 🙂