View Full Version : how do I align my tag board and poll?


ambimuffin
02-18-2003, 04:47 AM
this is the code that I have, i want the poll to show up beside the tag board, how do i do that?

currently one sits to the left(tag board) and the other sits underneath it to the right


<SCRIPT LANGUAGE="Javascript" TYPE="text/javascript" SRC="http://www.tag-board.com/tagboard.js"></SCRIPT>

<table width="200" cellpadding="2" cellspacing="0" border="0">
<tr>
<td width="200" height="200" valign=top>
<iframe src="http://www.tag-board.com/my.tag?name=boogiebeep" name="tag" width="200" height="200"
marginwidth="0" marginheight="0"></iframe>
<script>netscape_support();</script>
</td>
</tr>
<tr>
<td>
<a href="http://www.tag-board.com/" target="_new">Powered by TagBoard Message Board</a>
</td>
</tr>
<tr>
<td>
<form action="http://www.tag-board.com/add.tag" method="post" name="tagform" target="tag">
<input type="hidden" name="name" value="boogiebeep">
Name<br>
<input name="tagname" maxlength="20"><br>
URL or Email<br>
<input name="tagurl" maxlength="100"><br>
Messages(<a href="http://www.tag-board.com/smilies/smilies.htm" onClick="return pop_up_smilies();" target="_blank">smilies</a>)
<br>
<textarea cols="24" rows="3" name="message" wrap></textarea><br>
<input class=button type="submit" value="go on, say it!!" onclick="return Clear_Last_Message_on_Submit();">
</form>
<script>rememberme()</SCRIPT>
</td>
</tr>
</table></right><!-- The following line of code must be on one line, it can not wrap // -->
<div align="center"><script language="JavaScript" src="http://pub23.bravenet.com/minipoll/show.php?usernum=1921866598&cpv=1">
</script></div>

bejayel
02-18-2003, 06:07 AM
you can try tables or divs. but that all i can think of, without seeing what you want to do anyway.

gotfaith3
02-18-2003, 02:31 PM
maybe they are too big to sit next to each other... make them a little smaller.. try that

ambimuffin
02-18-2003, 09:42 PM
i tired making it smaller, but it didnt work, where is the information for divs and tables?

gotfaith3
02-18-2003, 11:48 PM
http://www.lissaexplains.com/table.shtml there is the url for lissa's code. okay well i hope that helps.

ambimuffin
02-18-2003, 11:58 PM
it would do if I could understand it, i already checked it out, but thanks anyways

can u tell me where I gota put what codes?

gotfaith3
02-19-2003, 03:41 AM
put them in the body ... what do you mean.. where to put the codes that are already in your html?

ambimuffin
02-19-2003, 04:14 AM
no what codes do I use??? there are already tables and stuff in the code itself? i dunno what parts to change!

Alcy
02-19-2003, 10:16 PM
Just add it into the table and make it wider :).

<SCRIPT LANGUAGE="Javascript" TYPE="text/javascript" SRC="http://www.tag-board.com/tagboard.js"></SCRIPT>
<table cellpadding="2" width="#" cellspacing="0" border="0">
<tr>
<td width="200" height="200" valign=top>
<iframe src="http://www.tag-board.com/my.tag?name=boogiebeep" name="tag" width="200" height="200" marginwidth="0" marginheight="0"></iframe>
<script>netscape_support();</script>
</td>

<td valign=top rowspan=2>
<!-- The following line of code must be on one line, it can not wrap // -->
<script language="JavaScript" src="http://pub23.bravenet.com/minipoll/show.php?usernum=1921866598&cpv=1"></script>
</td>

</tr>

<tr>
<td valign=top>
<a href="http://www.tag-board.com/" target="_new">Powered by TagBoard Message Board</a>

<br><br>

<form action="http://www.tag-board.com/add.tag" method="post" name="tagform" target="tag">
<input type="hidden" name="name" value="boogiebeep">
Name<br>
<input name="tagname" maxlength="20"><br>
URL or Email<br>
<input name="tagurl" maxlength="100"><br>
Messages(<a href="http://www.tag-board.com/smilies/smilies.htm" onClick="return pop_up_smilies();" target="_blank">smilies</a> )
<br>
<textarea cols="24" rows="3" name="message" wrap></textarea><br>
<input class=button type="submit" value="go on, say it!!" onclick="return Clear_Last_Message_on_Sub
mit();">
</form>
<script>rememberme()</SCRIPT>
</td>

</tr>
</table>
</td>