Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Location of Command Buttons

Status
Not open for further replies.

dcusick

Technical User
Aug 9, 2000
271
US
Here is what I'm looking to do. I'm looking to place command buttons down a page in columns, similar to how a NCAA Bracket is set up. It should look like this...

111
555
222
666
333
777
444

I'm not sure what the easiest way to accomplish this. Any help would be greatly appreciated. Thanks in advance.

Doug
 
Hows that

<table>
<tr><td>111</td><td></td></tr>
<tr><td></td><td>222</td></tr>
<tr><td>333</td><td></td></tr>
<tr><td></td><td>444</td></tr>
<tr><td>555</td><td></td></tr>
</table>
 
Easiest and most reliable way to do this would be to set it up in a table:

<table>
<tr>
<td>111</td><td></td>
</tr><tr>
<td></td><td>555</td>
</tr><tr>
<td>222</td><td></td>
</tr><tr>
<td></td><td>666</td>
</tr>><tr>
<td>333</td><td></td>
</tr>><tr>
<td></td><td>777</td>
</tr>><tr>
<td>444</td><td></td>
</tr>
</table>

and so on...
 
That was it. Thank you very much. When you start thinking of DIV Tags and style sheets, you forget the most obvious things. Thanks again guys.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top