..oO(Lennyboy)
Quote:
Hi thanks for your reply. Yes the url is
http://www.kent-squash.co.uk/Superleague/superleague%20fixtures.html |
The table looks OK, but the code ... it's really bloated with tons of
unnecessary ('div', 'p', 'span'), deprecated ('font') and inappropriate
('blockquote') elements and attributes.
A clean start could look like this:
<table>
<thead>
<tr>
<th>Date</th><th>Home Team</th><th>Away Team</th>
<th>Results</th><th>Points</th><th>More Info</th>
</tr>
</thead>
<tbody>
<tr class="colored">
<td>13-Oct-05</td>
<td>PARK LANGLEY</td>
<td>MAIDSTONE</td>
</tr><tr>
<td></td>
<td>BIGGIN HILL</td>
<td>BEXLEY</td>
</tr><tr class="colored">
<td></td>
<td>WHITSTABLE</td>
<td>RODMERSHAM A</td>
</tr>
....
</tbody>
</table>
The rest can be done with CSS.
Quote:
It's gonna sound weird but i know nothing about CSS, could I just create the
table in CSS |
No, tables belong to HTML. You can use CSS to style it.
Quote:
without changing the set up of the site or would I have to do
something different. |
You would have to clean-up the code.
Quote:
It sounds like i'm going to have to learn this CSS |
Definitely.
Quote:
do you
know of any basic tutorials? |
Google?
Micha