Help with 'Tune in:' block

pavlos.g's picture

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

cookiesunshinex - Wed, 2009-02-18 06:23

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

pavlos.g's picture
pavlos.g - Wed, 2009-02-18 09:26

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

cookiesunshinex - Sun, 2009-05-31 21:47

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

pavlos.g's picture
pavlos.g - Mon, 2009-06-01 08:31

The <span> tag starts after the "return t('Tune in: ')", therefore only "My Stream 128k" changes.