By:
Rita Faddoul In order to theme the 1pixelout player in drupal, you need to paste the following code in the template.php file of the theme.
<?php function phptemplate_audio_1pixelout_node_player($node, $options = array()) { $defaultoptions['leftbg'] = '0x000000'; $defaultoptions['rightbg'] = '0x000000'; $defaultoptions['lefticon'] = '0xFFFFFF'; $defaultoptions['righticon'] = '0xFFFFFF'; $options = array_merge($defaultoptions, $options); return theme_audio_1pixelout_node_player($node, $options); } ?>


