Log in

View Full Version : Too tired to think



Freeman
10-31-2005, 04:08 PM
how do I center the two text boxs under the table. Thanks for the help, JF


</td>
<td>
<label for="comments">Comments:</label>
<textarea name="Punctuality Comments" id="comments" rows="1" cols="30">
Type text here</textarea>
</td>
</tr>
</table>
<hr>
<p align="center">
<label for="comments">Comments for improvement:</label>
<textarea name="improvement" id="comments" row="2" cols="75" warp="hard"></textarea>
</p>
<p align="center">
<label for="comments">Comments for commendation:</label>
<textarea name="commendation" id="comments" row="2" cols="75" warp="hard"></textarea>
</p>
<hr color="003466">
<p align="center">
<input type="submit" name="submit" Value="Submit">
<input type="reset">
</p>
</style>

simonf
11-01-2005, 05:46 AM
Please explain a little more.... do not understand 100% what you want to achieve

Freeman
11-01-2005, 02:36 PM
How it is now is that those two text imput boxes come up to the right of alot of other stuff. I would like it to come up directly under the last radio buttons. Thanks, JF

<html>
<head>
<title>Student Work Evaluation</title>
</head>
<style="text/css">



<label for="comments">Student Name:</label>
<textarea name="Student Name" id="comments" rows="1" cols="30"></textarea>



<table align="left">
<tr>
<td>Punctuality:</td>
<td>
<input type="radio" name="Punctuality" id="1" value="1">
<label for="1">1</label>

<input type="radio" name="Punctuality" id="2" value="2">
<label for="2">2</label>

<input type="radio" name="Punctuality" id="3" value="3">
<label for="3">3</label>

<input type="radio" name="Punctuality" id="4" value="4">
<label for="4">4</label>

<input type="radio" name="Punctuality" id="5" value="5">
<label for="5">5</label>

<input type="radio" name="Punctuality" id="6" value="6">
<label for="6">6</label>

<input type="radio" name="Punctuality" id="7" value="7">
<label for="7">7</label>

<input type="radio" name="Punctuality" id="8" value="8">
<label for="8">8</label>

<input type="radio" name="Punctuality" id="9" value="9">
<label for="9">9</label>

<input type="radio" name="Punctuality" id="10" value="10">
<label for="10">10</label>


</td>
<td>
<label for="comments">Comments:</label>
<textarea name="Punctuality Comments" id="comments" rows="1" cols="30">
Type text here</textarea>
</td>
</tr>
</table>
<hr>
<p align="center">
<label for="comments">Comments for improvement:</label>
<textarea name="improvement" id="comments" row="2" cols="75" warp="hard"></textarea>
</p>
<p align="center">
<label for="comments">Comments for commendation:</label>
<textarea name="commendation" id="comments" row="2" cols="75" warp="hard"></textarea>
</p>
<hr color="003466">
<p align="center">
<input type="submit" name="submit" Value="Submit">
<input type="reset">
</p>
</style>






</html>

pjrey
11-01-2005, 02:51 PM
you have to use tables...
that, or break your text... it looks the text and textarea as being on... it centers that as a whole....

either use a line break..
or tables...


(i suppose you could use CSS.. and position it)

p