The text can be removed under SportsPress > Configure.
As for the alignment, that’s done via CSS and it’s actually done by your theme. We can overwrite that though. Add the following code in your custom css field ( Wp admin > SportsPress > Settings > General > Custom CSS ) and let us know how it works:
body .sp-data-table * {
text-align: right ! important;
}
Please keep in mind that it’s much better to have just one topic per issue, otherwise it gets long and confusing.
Also, these questions are all related to your theme itself, not sportspress, so although we are happy to provide simple CSS snippets we recommend you contacting them.
This CSS should do that for you
.sp-template-league-table td.data-name {
color: red ! important;
}
Can you explain how you set the columns in a reverse order?
(in League Table, or Event list)
E.g. in the league table I can set the order of some columns in a shortcode, but the position and the team column are always on the right (while I want them to be on the left)