Jump to content

pls help...

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
joie2

joie2

    Newbie

  • Members
  • PipPip
  • 17 posts
how could i make the messege box larger?
<html>
<body>
	<table bgcolor="white" width=100% border=1 align=right>
			<tr>
			<td><div align="center"><a href="home.htm"target="_self"><font face="georgia"color="black"size="2"><b>Home</b></font></a></div></td>
			<td><div align="center"><a href="prof.htm"target="_self"><font face="georgia"color="black"size="2"><b>Profile</b></font></a></div></td>
			<td><div align="center"><a href="inbox.htm"target="_self"><font face="georgia"color="black"size="2"><b>Inbox</b></font></a></div></td>
			<td><div align="center"><a href="rep.htm"target="_self"><font face="georgia"color="black"size="2"><b>Compose</b></font></a></div></td>
			<td><div align="center"><a href="invite.htm"target="_self"><font face="georgia"color="black"size="2"><b>Invite</b></font></a></div></td>
			<td><div align="center"><a href="main.htm"target="_blank"><font face="georgia"color="black"size="2"><b>Log Out</b></font></a></div></td>
		</tr>
	</table><br><br><br><br>
	<table width=100% bgcolor="#800517">
		<tr>
			<td><br><form action="sent.htm"method="get">
			<input type="submit"value="Send">
			</form></td>
			<td><form action="save.htm"method="get">
			<input type="submit"value="Save"></td>
		</tr>
		<tr>
			<td>To:</td>
			<td><input type="text"method="get"></td>
		</tr>
		<tr>
			<td>Subject:</td>
			<td><input type="text"method="get"></td>
		</tr>
		<tr>	
			<td>Messge</td>
			<td><textarea name="message"row="100"></textarea></td>
		</tr>
	</table>
		
</body>
</html>


pls help

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Hey joie, I've added code tags to your post. It helps us help you so please use them in the future.

I assume by messagebox you mean the textarea.
<td><textarea name="message" row="100"></textarea></td>

Increase the row count, rename row to its proper term of rows and add a cols value to make it larger:
<td><textarea name="message" rows="110" cols="100"></textarea></td>

You could also make it larger using CSS.

#3
DanzP

DanzP

    Newbie

  • Members
  • PipPip
  • 16 posts
yep that should work :)