Current Song Display Code

Read 4195 times
I am writing this because I would like to know if it's possible to change the font and font size that is displayed when you utilize the code that displays current song playing. If so, can someone tell me how?
For the stream status snippets (including the now-playing code) we don't apply any styling so it'll inherit the CSS from your page.

If you want to apply custom CSS, just use the ID of the
or generated by Centova Cast  as your CSS selector.  e.g., for:
Code: (html) [Select]
Loading...

your CSS selector would be:
Code: [Select]
#cc_stream_info_summary

so your CSS stanza might look like:
Code: (css) [Select]
#cc_stream_info_summary {
  font-size: 10px;
  color: red;
}