in my table tag I have
<table width="100%" border="1" cellspacing="0" cellpadding="0">
but I don't like the border showing up like the way it is. I want it to be flat regular black line, and then I want to partition this table in the middle so that the Table of Contents returned by my sql query shows up in equally on both sides... in a table
1. INTRODUCTION 3. BASIC ALGEBRA
2. SIMPLE ALGEBRA 4. ADVANCED ALGEBRA
Right now I have the following code:
- Code: Select all
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<cfoutput query="qry">
<tr>
<td >#numbering#. #Table_Of_Contents#</td>
</tr>
<cfset numbering = numbering + 1 />
</cfoutput>
</table>
ANy help is appreciated..


