Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

need someone that can handle tables to spare 2 seconds


The-Scarecrow's Avatar
Member
755 19

how do i get my text to the top of the textbox? its been doing me head in for ages. i know its ridiculously simple.

           <tr>
             <td><div align="center">hello world</div></td>
           </tr>
         </table>```

ghost's Avatar
0 0

The-Scarecrow wrote: how do i get my text to the top of the textbox? its been doing me head in for ages. i know its ridiculously simple.

           <tr>
             <td><div align="center">hello world</div></td>
           </tr>
         </table>```

You're annoying, please stop posting in the forum.. ever again.

The-Scarecrow's Avatar
Member
755 19

Edit: I will stop calling Fritzo an asshole, or he will get pissed.


ghost's Avatar
0 0

The-Scarecrow wrote: Edit: I will stop calling Fritzo an asshole, or he will get pissed.

That's right young padawan!


ynori7's Avatar
Future Emperor of Earth
0 0

The-Scarecrow wrote: how do i get my text to the top of the textbox? its been doing me head in for ages. i know its ridiculously simple.

The first step is to actually have a textbox. What you're using is called a table.

And why the hell did you start a new thread for this? This is essentially the same topic you were asking about yesterday.

EDIT: Also, I answered this question already in your other thread. Reread the code I gave you; It's in there.


AldarHawk's Avatar
The Manager
0 0

#1…Why in gods name do you use a div inside a table? use one or the other :whoa: #2AldarHawk has a heart attack from sheer frustration due to lack of knowledge…


yours31f's Avatar
Retired
10 0

I only have one thing to say…

W3Schools.com , Use it.


ghost's Avatar
0 0

yours31f wrote: I only have one thing to say…

W3Schools.com , Use it.

Yeah, You really should go there and start learning..

Yeah, I'm not speaking to OP, I'm speaking to you Yours31f.


ghost's Avatar
0 0

This code works although it's extremely bad "programming". You don't want to mix divs and tables. You should skip the tables.

<tr>
<td valign="top"><div align="center">hello world</div></td>
</tr>
</table>```

ghost's Avatar
0 0

Why don't you use this (if you want to use tables):

<table width="100%" height="106" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top">hello world</td>
</tr>
<tr>
<td align="left" valign="top"><input type="text" /></td>
</tr>
</table>

or simple this:

hello world
<br />
<br />
<input type="text" />

ynori7's Avatar
Future Emperor of Earth
0 0

MH-IA wrote: Why don't you use this (if you want to use tables):

Because of three simple reasons:

  1. This thread has been dead for more than 2 months.
  2. The problem was already solved.
  3. The OP hasn't been to HBH for over a month.

ranma's Avatar
Member
0 0

So much for the "Master Hacker in action" :whoa: