|
Posted by Jonathan N. Little on 12/31/07 20:14
richard wrote:
> On Mon, 31 Dec 2007 12:45:47 -0500, "Jonathan N. Little"
> <lws4art@centralva.net> wrote:
>
>> richard wrote:
>>> http://littleworldofours.com/1960d.html
>>>
>>> I know you're gonna run it through the validator. BTDT.
>>> What cleanup is needed will be done later.
>>>
>>> Locate "EBB TIDE".
>>> What I want to do is quite simple, but when I try it, I get an
>>> erroneous table cell that should not be there.
>>>
>>> On the very right side of each entry are two table cells that show a
>>> "Week" and below it shows a number.
>>>
>>> 1)EBB TIDE.............. .................... Jan 02
>>> 2)Bobby Freeman..... Josie 872......11
>>> 3)Roy Hamilton......... Epic 9068
>>>
>>> In rows 2 and 3 above, I want only the table cells to show as a single
>>> cell as normal. Then in column 3, merge rows 2 and 3.
>>>
>>> However, when I try a rowspan, it doesn't work right.
>>>
>>> So where do I put the rowspan to make it right?
>>>
>>>
>> You don't want a *row*span but a colspan.
>>
>> <tr>
>> <td colspan="2" class="atitle">EBB TIDE</td>
>> <td class="wks1">Jan 02</td>
>> </tr>
>>
>> <tr>
>> <td class="artist">Bobby Freeman</td>
>> <td class="label">Josie 872</td>
>> <td class="wks2" colspan="2">11</td>
>> </tr>
>>
>> <tr>
>> <td class="artist">Roy Hamilton</td>
>> <td class="label">Epic 9068</td>
>> </tr>
>
Nope I royally screwed up and got it "bass-ackwards", (too much xmas
cheer I guess)Should be *row*span
<tr>
<td colspan="2" class="atitle">EBB TIDE</td>
<td class="wks1">Jan 02</td>
</tr>
<tr>
<td class="artist">Bobby Freeman</td>
<td class="label">Josie 872</td>
<td class="wks2" rowpan="2">11</td>
</tr>
<tr>
<td class="artist">Roy Hamilton</td>
<td class="label">Epic 9068</td>
</tr>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|