PDA

View Full Version : Im a dumbass at using tables!


Big J
12-03-2002, 04:40 AM
Could someone please help me make a duplate of the table below so that I will have 2 of the same appear side by side? please? I just cant seem to get it. *smacks forehead*

<!-- Search The Internet Hack (search bar), (Copyright 2002+), tHE DSS -->

<!-- 5px VERTICAL GAP -->
<table border="0" width="{tablewidth}" cellpadding="0" cellspacing="0">
<td height="5"></td>
</table>
<!-- 5px VERTICAL GAP END -->

<table border="0" width="{tablewidth}" cellpadding="0" cellspacing="0">
<tr>
<td>
<table bgcolor="{tablebordercolor}" cellpadding=4 cellspacing=1 width="50%" border="0">
<td align="left" valign="center" bgcolor="{tableheadbgcolor}"><smallfont color="{categoryfontcolor}"><img src="{imagesfolder}/find.gif" alt="Search the net!" border="0">&nbsp; Search The Internet</smallfont></td>
<tr>
<td align="left" valign="center" width="100%" bgcolor="{firstaltcolor}">
<table cellpadding=0 cellspacing=0 width="100%" border="0">
<tr>
<td align=left valign="center">
<form action="./websearch.php" target="_blank">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="text" name="searchString" size="25" maxlength="255" value="">
<select name="engine">
<option value="google" selected>Search -> Google
<option value="yahoo">Search -> Yahoo
<option value="altaVista">Search -> Alta Vista
<option value="excite">Search -> Excite
<option value="lycos">Search -> Lycos
</select>
</td>
<td align=right>
<input type="submit" name="searchButton" value="Search">
</td> </form>
</tr>
</table>
</td></tr>
<tr>
<td align="left" valign="center" bgcolor="{tableheadbgcolor}"><smallfont color="{categoryfontcolor}">&nbsp;</smallfont></td></tr>
</table>
</td>
</tr>
</table>

Here is my forum (not open to my members yet), see the internet search at the bottom left? I want a duplicate of that to appear on the right side of the existing one. I'm going to put some other little goodies is the new table.

http://www.extreme-athlete.com/forums/

Velocd
12-03-2002, 04:52 AM
Experiment with the following code, I think this is what you wanted:

<!-- Search The Internet Hack (search bar), (Copyright 2002+), tHE DSS -->

<!-- 5px VERTICAL GAP -->
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<td height="5"></td>
</table>
<!-- 5px VERTICAL GAP END -->


<table border="0" width="38%" cellpadding="0" cellspacing="0">
<tr><td><table bgcolor="#0A293E" cellpadding=4 cellspacing=1 width="50%"

border="0">
<td align="left" valign="center" bgcolor="#1D6AA0"><smallfont

color="#000000"><img src="https://vborg.vbsupport.ru/images/find.gif"

alt="Search the net!" border="0"> Search The Internet</smallfont></td>
<tr>
<td align="left" valign="center" width="100%" bgcolor="#13486D">
<table cellpadding=0 cellspacing=0 width="100%" border="0">
<tr>
<td align=left valign="center">
<form action="./websearch.php" target="_blank">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="text" name="searchString" size="25" maxlength="255" value="">
<select name="engine">
<option value="google" selected>Search -> Google
<option value="yahoo">Search -> Yahoo
<option value="altaVista">Search -> Alta Vista
<option value="excite">Search -> Excite
<option value="lycos">Search -> Lycos
</select>
</td>
<td align=right>
<input type="submit" name="searchButton" value="Search">
</td> </form>
</tr>
</table>
</td></tr>
<tr>
<td align="left" valign="center" bgcolor="#1D6AA0"><smallfont

color="#000000"></smallfont></td></tr>
</table></td>

<!-- duplicate table add below here, in <td> tags -->

<td>
<table bgcolor="#0A293E" cellpadding=4 cellspacing=1 width="50%"

border="0">
<td align="left" valign="center" bgcolor="#1D6AA0"><smallfont

color="#000000"><img src="https://vborg.vbsupport.ru/images/find.gif"

alt="Search the net!" border="0"> Search The Internet</smallfont></td>
<tr>
<td align="left" valign="center" width="100%" bgcolor="#13486D">
<table cellpadding=0 cellspacing=0 width="100%" border="0">
<tr>
<td align=left valign="center">
<form action="./websearch.php" target="_blank">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="text" name="searchString" size="25" maxlength="255" value="">
<select name="engine">
<option value="google" selected>Search -> Google
<option value="yahoo">Search -> Yahoo
<option value="altaVista">Search -> Alta Vista
<option value="excite">Search -> Excite
<option value="lycos">Search -> Lycos
</select>
</td>
<td align=right>
<input type="submit" name="searchButton" value="Search">
</td> </form>
</tr>
</table>
</td></tr>
<tr>
<td align="left" valign="center" bgcolor="#1D6AA0"><smallfont

color="#000000"> </smallfont></td></tr>
</table>
</td>
</tr>
</table>

The parts in red are the main changes I made.

Big J
12-03-2002, 03:07 PM
THANK YOU SO MUCH!!!