Ya, that doesn't do it. You have to go into the core files. components > com_jsjobs > views > job > tmpl > view_job.php
Then near the bottom find the section that's needed to move and copy the chuck of code and swap it around. Here is what I ended up with:
<div class="jsjobs-jobmore-info">
<?php if($this->listjobconfig['lj_description'] == 1){ ?>
<span class="js_controlpanel_title"><?php echo getjobfieldtitle('description' , $cf_model); ?></span>
<div class="jsjobs_full_width_data"><?php echo $this->job->description; ?></div>
<?php } ?>
<?php if (isset($this->fieldsordering['qualifications']) && $this->fieldsordering['qualifications'] == 1) { ?>
<span class="js_controlpanel_title"><?php echo getjobfieldtitle('qualifications' , $cf_model); ?></span>
<div class="jsjobs_full_width_data"><?php echo $this->job->qualifications; ?></div>
<?php } ?>
<?php if (isset($this->fieldsordering['prefferdskills']) && $this->fieldsordering['prefferdskills'] == 1) { ?>
<span class="js_controlpanel_title"><?php echo getjobfieldtitle('prefferdskills' , $cf_model); ?></span>
<div class="jsjobs_full_width_data"><?php echo $this->job->prefferdskills; ?></div>
<?php } ?>
<?php if (isset($this->fieldsordering['agreement']) && $this->fieldsordering['agreement'] == 1) { ?>
<span class="js_controlpanel_title"><?php echo getjobfieldtitle('agreement' , $cf_model); ?></span>
<div class="jsjobs_full_width_data"><?php echo $this->job->agreement; ?></div>