Formatting is accomplished via Job Lists Template.
This is an example:
It’s probably best to add the styling to your theme css and reference back to JM.
<style type ="text/css">
table
{
border-collapse:collapse;
}
table, td, th
{
border:1px solid black;
}
table
{
width:100%;
}
th
{
height:30px;
background-color:LightGrey;
color:Black ;
}
td
{
padding:5px;
word-break: break-all;
</style>
<div class='jobs[job_row_number] job[job_id] [job_odd_even]'>
<table class="jobs-table[if_job_highlighted] highlighted[/if_job_highlighted]">
<tr class="heading">
<th>Title</th>
<th>ID</th>
<th>Location</th>
<th>Job Description</th>
</tr>
[job_loop]
<tr class='job'[job_title][job_row_number][job_id]>
<td>[if_job_icon][job_icon]<br />[/if_job_icon] [job_link] [job_title] [/job_link]</td>
<td>[job_id]</td>
<td>[job_field4]</td>
<td>[job_link]More Info[/job_link]</td>
</tr>
[/job_loop]
[if_job_page_count]
<div class="job-nav">
<div class="previous">[job_page_previous_link]Previous Page[/job_page_previous_link]</div>
<div class="next">[job_page_next_link]Next Page[/job_page_next_link]</div>
</div>
[/if_job_page_count]
</table>