Help with 'Tune in:' block
Hello everybody,
i need to make a 'slight' change in the 'tune in:' block on my frontpage.
Specifically, i need to change the name of the currently playing program to the name(s) of the producers of the program.
Any help on that would be greatly appreciated.
Thanks in advance.
Groups:
Login to post comments

I would also like to change
I would also like to change the color of the text next to where it says Tune In:
I have feedback from some users that it's not apparent where to click to listen to the station.
About the coloring issue, i
About the coloring issue, i had the same problem and i solved it with the following change:
file: station.module
function: theme_station_streams($streams)
line: 398 (doublecheck that as i've made quite a few changes/additions in my file so the lines are not the same)
return t('Tune in: ') .'<span class="stream_url">'. station_ored_list($items).'</span>';Then just add a .stream_url class in your theme's css file and change the coloring ;-)
Hope that helps
pavlos.g, does this change
pavlos.g, does this change the "Tune in" text color or does it change the name of the link color?
Example:
Tune in: My Stream 128k
Tune in: gets changed
or My Stream 128K gets changed
or both??
The tag starts after the
The
<span>tag starts after the "return t('Tune in: ')", therefore only "My Stream 128k" changes.