i also posted this in the feedback forums, but maybe some other users would find this interesting and are able to help out.
the recruitment box for swtor. To be honest, at the moment it is not looking very catchy.
maybe the developers could change it to show an image instead of an icon and text. Example below that i found for sw:tor

it would give it a little more eyecandy

i would be able to create these kind of images and provide them for you.
when i currently replace these images with the icons, they are resized to the icon size.
perhaps it is just a matter of changing this code but i am not sure as i'm sucky sucky at php.
from portal/recruitment/module.php
Code:
}else // all other games
{
if ($conf_plus['pk_recruitment_class['.$row['class_id'].']'] > 0)
{
$rowcolor = $eqdkp->switch_row_class();
$c_color = str_replace(' ','',renameClasstoenglish($row['class_name']));
$recruit .= '<tr class="'.$rowcolor.'"><td class="'.$c_color.'">'.get_ClassIcon($row['class_name'],$row['class_id']).' '.$row['class_name'].'</td>
<td>'. $conf_plus['pk_recruitment_class['.$row['class_id'].']']. '</td>
</tr>';
$show =true ;
to my thinking this line is affecting the icon showing:
Code:
<td class="'.$c_color.'">'.get_ClassIcon($row['class_name'],$row['class_id']).' '.$row['class_name'].'</td>
so if its possible to change that to use an image instead of the icon and no text, i think it will be done. Is it that simple or does it require more work?