Ian, attachments do not work on this list.
It's difficult to help with most of what you ask, as we can't see your
layout.
However, here's and example of alternating row colours using css.
------------------------
<table>
<cfoutput query="NewsList">
<cfif NewsList.CurrentRow MOD 2 eq 1>
<cfset rowcolor = 'menu1'>
<cfelse>
<cfset rowcolor = 'menu2'>
</cfif>
<tr>
<td class="#rowcolor#">Content</td>
</tr>
</cfoutput>
</table>
----------------------
Hope that helps a bit, Craig.
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 09 November 2001 11:02
To: CF-Talk
Subject: How can this be implemented ?
Hi
I currently have a What's On Guide that is currently static html pages, but
I intend to make this database driven using Coldfusion.
I want to display the following fields from my db table, Eventtitle,
eventdate, and location which has already been set up and polulated with
some sample data.
These display event information for the forthcoming months,
Looking at the graphic example attached which shows a design mock up of how
it should look when fully working with Coldfusion,
How would you break the events (fields from the database) sorted by month so
you display November and all of novembers months are displayed, then if
there are entries for December , the December title is displayed and
decembers events etc.
Finally how would you be able to make the table cell rows alternate colors
such as in the example attached for each record?
Any ideas on the best possible solution/ implementation with CF would be
appreciated.
Ian
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists