- see footer for list info -<
Can anyone help me with this please ..?

I am trying to create a table that has lines which go Green White Green White Green White (You get the idea)

I have a style sheet like this ....

TABLE.ActivityName { border: 1px solid #005186; font-family:arial; font-size:14px; font-weight:bold; color:White; background-color:#0fad0a; }

.GreenTableCell { font-family:arial; font-size:12px; color:Black; background-color:#b9f8b7; padding-left:0px; } .WhiteTableCell { font-family:arial; font-size:12px; color:Black; background-color:#ffffff; }


And some code like this ....

<cfoutput query="ActivityDetails">
<table width=20% class="ActivityName">
                <tr>
                        <td>
                                #ActivityName#
                </td>
        </tr>
</table>
<table width=95%>
                <tr>
                        <td class="GreenTableCell">
                                Age Range
                </td>
                <td class="GreenTableCell">
                something here
                </td>
        </tr>
        <tr>
                        <td class="WhiteTableCell">
                                Frequency of Sessions
                </td>
                <td class="WhiteTableCell">
                something here
                </td>
        </tr>
</table>
</cfoutput>


The problem is I get a white gap between the green cells ....

http://www.bgfl.org/cfpages/studysupport/DisplayActivity.cfm?ID=1

How do I lose the gap ...?

Regards - Paul


_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to 
http://list.cfdeveloper.co.uk/mailman/listinfo

--
CFDeveloper Sponsors:-
- Hosting provided by www.cfmxhosting.co.uk -<
- Forum provided by www.fusetalk.com -<
- DHTML Menus provided by www.APYCOM.com -<
- Lists hosted by www.Gradwell.com -<
- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<

Reply via email to