Different colors for online statuses
From Adult Web Scripts Wiki
You can use $status as follows:
In your html use:
- PHP: class="btn_<?= $status ?>"
- Smarty: class="btn_{$status}"
Then in your CSS remember to use %20 where there are spaces in the status name this, since private_show gets rewritten as Private Show before being displayed:
.Private%20Show {
color: red;
}
