View Full Version : A little help, thanks =)


st4rfish
01-20-2005, 10:21 AM
The following is my bad attempt at trying to make my input fields go to the right of the actual tagboard...could someone tell me what I am doing wrong? Thanks ahead of time!


<html>
<head>
<title></title>
<link rel="stylesheet" href="style.css">
<SCRIPT>
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,men ubar=0,resizable=0,width=133,height=80');");
}

</SCRIPT>
</head>
<body>
<table width="100%">
<td>
<form action="sign.php" method="GET" target="tags">
<div id="Layer1" style="border-width: 1 1 1 1; border-color: #CFEF78; border-style: solid; width: 70;">
<iframe src="tags.php?show=limit" name="tags" width="70" height="80" frameborder="0" ></iframe>
</div>
</td>
<td>
<input type="text" size="10" name="comment" value="comment" class="input" maxlength="150"><br>
<input type="text" size="10" name="website" value="http://" class="input"><br>
<input type="text" size="10" name="name" value="name" class="input" maxlength="15"><br>
<input type="submit" value=" Tag" class="button"><br> <a href="tags.php?show=all" onclick="popUp(this.href);return false;">H</a> - <a href="smilies.html" onclick="popUp(this.href);return false;">S</a> - <a href="admin.php" target="blank">A</a>
</div></form>
</td>
</table>
</body>
</html>

pb&j
01-20-2005, 01:50 PM
<html>
<head>
<title></title>
<link rel="stylesheet" href="style.css">
<SCRIPT>
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,l ocation=0,statusbar=0,men ubar=0,resizable=0,width= 133,height=80');");
}

</SCRIPT>
</head>
<body>
<table width="100%">
<tr>
<td>
<div id="Layer1" style="border-width: 1px; border-color: #CFEF78; border-style: solid; width: 70px;">
<iframe src="tags.php?show=limit" name="tags" width="70" height="80" frameborder="0"></iframe>
</div>
</td>
<td>
<form action="sign.php" method="GET" target="tags">
<input type="text" size="10" name="comment" value="comment" class="input" maxlength="150"><br>
<input type="text" size="10" name="website" value="http://" class="input"><br>
<input type="text" size="10" name="name" value="name" class="input" maxlength="15"><br>
<input type="submit" value="Tag" class="button"><br> <a href="tags.php?show=all" onclick="popUp(this.href);return false;">H</a> - <a href="smilies.html" onclick="popUp(this.href);return false;">S</a> - <a href="admin.php" target="blank">A</a>
</form>
</td>
</tr>
</table>
</body>
</html>