Follow Me Skin audio player type
Design and Skin Customization
You can use this method:
Docs: "Altering a Module's Template"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1051/altering-a-modules-template
on the /modules/jrAudio/templates/item_embed.tpl file. Copy it to your cloned skin to
/skins/YOUR SKIN/jrAudio_item_embed.tpl
Then change the player type="" to a different player. Probably the
type="jrAudio_gray_overlay_player" is what you want in that file:
<div style="display: inline-block; width:100%">
{if isset($item) && is_array($item)}
{jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" item=$item}
{elseif isset($_items) && is_array($_items)}
{jrCore_media_player module="jrAudio" type="jrAudio_gray_overlay_player" field="audio_file" items=$_items}
{/if}
</div>