Not sure how well it will work with true-type fonts and the browsers ... but if you have enough text this might look ok.
** Not tested! ** <cfset myText = "a really long string of characters"> <cfset oneThird = int(len(myText) / 3)> <cfset col1 = left(myText, oneThird)> <cfset col2 = mid(myText, oneThird + 1, oneThird)> <cfset col3 = mid(myText, (2 * oneThird) + 1, len(myText) - (2 * oneThird))> Dan -----Original Message----- From: Justin Hansen [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 12:21 PM To: CF-Talk Subject: 3 column output Ok, here is a good one for ya. I have a database of stories and they want to display it in the browser as a 3 column, "newspaper style" display. How does the all mighty group think this could be accomplished. How could one get a story to wrap from Column 1 to 2 and 3 with HTML Tables? Is this type of linked tables available in Flash MX? Anyone... Anyone.... Justin Hansen -------------------------- Uhlig Communications Systems Engineer -------------------------- [EMAIL PROTECTED] 913-754-4273 -------------------------- ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm 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

