Viewing 3 replies - 1 through 3 (of 3 total)
  • good question. how do we make our sites exactly like that one???

    You need to work with the Job List Template under JobManager-Settings-Display

    Try to use this as your template and see if it works for you..
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html>
    <head>
    <style type=”text/css”>
    table
    {
    border-collapse:collapse;
    }
    table, td, th
    {
    border:1px solid maroon;
    }
    table
    {
    width:100%;
    }
    th
    {
    height:50px;
    background-color:maroon;
    color:white;
    }
    td
    {
    padding:15px;
    word-break: break-all;
    }
    </style>
    </head>
    <body>
    <table>
    <tr>
    <th>Title</th>
    <th>[job_field4_label]</th>
    <th>[job_field2_label]</th>
    </tr>

    [job_loop]
    <tr>
    <td>[job_link][job_title][/job_link]</td>
    <td>[job_field4]</td>
    <td>[job_field2]</td>
    </tr>
    [/job_loop]
    </table>
    </body>
    </html>
    [if_job_page_count]
    <div class=”job-nav”>
    <div class=”previous”>[job_page_previous_link]Page [job_page_previous_number][/job_page_previous_link]</div>
    <div class=”this”>Jobs [job_page_minimum]-[job_page_maximum] of [job_total]</div>
    <div class=”next”>[job_page_next_link]Page [job_page_next_number][/job_page_next_link]</div>
    </div>
    [/if_job_page_count]

    This works great, thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Job Manager] Display Jobs’ is closed to new replies.