
January 19th, 2005, 06:18 AM
|
 |
Rosy Cheeked
|
|
Join Date: Jul 2004
Location: Cleveland, UK
|
|
You seem to have two links to the your style sheet, one in the header (which is correct) and then one down near the bottom of your source, you need to remove the second one.
You've made a really good start towards CSS based design, your site looks professional and very slick, but I feel there is still quite a bit of work to get your mark-up in good shape.
For example:
Your two tables, should probably be marked-up as one, in the following way. Otherwise the coloumn headers have no association with their respective coloumns.
PHP Code:
<table>
<thead>
<tr><th>Job Title</th><th>Company</th></tr>
</thead>
<tbody>
<tr>
<td class="titlecol"><a href="go.php?id=2833&p=0" title="Open Job Description in New Window">Client Executive</a></td>
<td class="companycol"><a href="list.php?search=company&keyword=Metafore Corp&cid=105&maxJobs=5" title="Show all jobs from this company">Metafore Corp</a></td>
</tr>
<tr>
<td class="titlecol"><a href="go.php?id=2826&p=0" title="Open Job Description in New Window">APPLICATION DESIGN SPECIALIST</a></td>
<td class="companycol"><a href="list.php?search=company&keyword=Bell Canada&cid=133&maxJobs=5" title="Show all jobs from this company">Bell Canada</a></td>
</tr>
<tr>
<td class="titlecol"><a href="go.php?id=2825&p=0" title="Open Job Description in New Window">DIRECTOR-STRATEGY AND BUSINESS DEVELOPMENT</a></td>
<td class="companycol"><a href="list.php?search=company&keyword=Bell Canada&cid=133&maxJobs=5" title="Show all jobs from this company">Bell Canada</a></td>
</tr>
</tbody>
</table>
__________________
Control post quality through the power of rep' ( )
|