You can do it in the code of plugins/content/commedia/commedia.php file. In two places:
That code is the header:
if(($showDownload == 1) || (($showDownload == 2) && ($DownAcc)))
$html.='<td style="width:'.$downloadColWidth.'px;">'.$downloadText.'</td>';
Move it above the:
$html.= '<td class="center">'.$playText.'</td>';
and that code is data:
if(($showDownload == 1) || (($showDownload == 2) && ($DownAcc))) {
$html.='<td style="text-align:center; width:'.$downloadColWidth.'px;"><span style="cursor:pointer; display: inline-block;">';
if($DownAcc) {
$html.='<a href="javascript:void(0);" title="'.JTEXT::_('Download Audio File').'" on-click="';
$html.='window.open(\''.((($ftht > 0)&&($drp))?$mdf:$mosConfig_live_site.($drp?$mdf:'index.php?option=com_commedia&format=raw&task=down&pid='.$pid.'&id='.$rowid)).'\'); ';
// $html.='window.open(\''.$mosConfig_live_site.($drp?$mdf:'index.php?option=com_commedia&format=raw&task=down&pid='.$pid.'&id='.$rowid).'\'); ';
$html.=' MP3Vote('.$rowid.',2,'.$uid.',0,'.$commcount.',0);">';
}
else $html.='<a title="'.JTEXT::_('Download Audio File').'" class="modal" rel="{handler: \'iframe\', size: {x: 300, y: 100}}" href="'.$mosConfig_live_site.'index.php?option=com_commedia&format=raw&task=vote&yon=2" target="_blank">';
$html.='<img src="'.$mosConfig_live_site; if($i) $html.=$downloadImageAlt; else $html.=$downloadImage;
$html.='" alt="download" /></a></span>';
if($showDownloadC) $html.='<div class="center">'.JTEXT::_('Downloads').': <div id="mp3down_'.$commcount.'_'.$rowid.'" class="mp3down">'.intval($dc).'</div></div>';
/*$html.='<div class="mp3dm" id="mp3dm_'.$commcount.'_'.$rowid.'"></div>';*/
$html.='</td>';
}
Move it in the file above the:
$html.='<td class="center">';
if ($showName == 2) $html.= $_name;