Right now, if you use the featured employers module, the link doesn’t use the menu link structure like expected. To fix, open the default.php file for that module, and find the following line:
$url = JRoute::_("index.php?option=com_jajobboard&view=japrofiles&layout=jaview&cid[]=".$items[$i]->user_id_tmp.'&alias='.$items[$i]->company2.'&Itemid=1000');
Replace with:
$Itemid = JRequest::getVar('Itemid');
$url = JRoute::_('index.php?option=com_jajobboard&view=japrofiles&layout=jaview&cid[]='.$items[$i]->user_id_tmp.'&alias='.$items[$i]->company2.'&Itemid=' . $Itemid);
If you would like to change the link to go directly to their jobs, try this. (I have not tested this.)