table help (html)

shtbreakd

Veteran XV
I'm going to make the tables invisible, but first I need help with doing this

tablehelp.jpg


I tried using colspan, but it just messed it all up...


Help would be greatly appreciated :)
 
In the top and bottom rows, make an inline table and increase/decrease cell width where needed (make the top and bottom rows only one cell).
 
you should give us a link to the page instead.

<table>
<tr>
<td colspan=3>notification and documentation</td>
</tr>
<tr>
<td></td><td></td><td></td>
</tr>
<tr>
<td colspan=3>standard exemptions</td>
</tr>
</table>
 
oops. revised:

Code:
<table border=5>
  <tr>
    <td colspan=3>notification and documentation</td>
  </tr>
  <tr>
    <td> </td><td> </td><td> </td>
  </tr>
  <tr>
    <td colspan=3>standard exemptions</td>
  </tr>
</table>
 
iNVAR said:
you should give us a link to the page instead.
yase

also, colspan is left aligned, so if you want a cell to span 2 columns, put colspan where the leftmost column would be, and don't put another cell there
 
i'm really not following your image of what it's supposed to look like.... maybe:

Code:
<table border=5>
  <tr>
    <td colspan=3><center>notification and documentation</center></td>
  </tr>
  <tr>
    <td width=40%>representative small business with air emissions</td>
    <td width=20%> </td>
    <td width=40%>standard exemptions</td>
  </tr>
</table>

?
 
rchain0214 said:
tablehelp2.jpg


w/ invars

I want the top three cells one (so basically the middle cell going over the other the other 3 in the same row



and with the middle row, i basically want the middle cell to shrink down just to act as a little buffer between the first and last cell in the second column
 
rchain0214 said:

arrg, now why wont that thing go up (the representatives with small business)

Code:
<DIV        "BORDER-RIGHT: green 1pt solid; PADDING-RIGHT: 4pt; BORDER-TOP: green 1pt solid; PADDING-LEFT: 4pt; BACKGROUND: #e5e5e5; PADDING-BOTTOM: 1pt; BORDER-LEFT: green 1pt solid; PADDING-TOP: 1pt; BORDER-BOTTOM: green 1pt solid; mso-border-shadow: yes; mso-shading: white; mso-pattern: gray-10 auto">
	      <BIG><STRONG><FONT face="Arial Narrow">              "COLOR: green; FONT-FAMILY: 'Times New Roman'">Representative
	      Small Businesses with Air Emissions</SPAN></FONT></STRONG></BIG>
	    </DIV>
	    <UL>
 
Back
Top