Click to See Complete Forum and Search --> : table Problems
modifier_guy
02-22-2004, 03:26 AM
yea yea yea tables are stupid but any ways when i make a table liek this My text always shows up way at the bottome how do i amke it at the top
<td>
<table width="1020">
<tr>
<td valign="top">
<TABLE BORDER="1" cellpadding="0" CELLSPACING="0" width="800">
<tr>
<td width="200" height="75" valign="bottom">
<Br>
A:Link {text-decoration:none;color:Blue;}
A:Hover {text-decoration:none;color:Black;}
A:Visited {text-decoration:Black;}
The is my beautiful website to the things i do and a place to post crap!
<bR>
<BR>
</table>
</td>
<td>
<table width="1020">
<tr>
modifier_guy
02-22-2004, 03:40 AM
can some one show me the proper way to use them cus i doubt thats is right i ahve a large book i have been reading and i am doing my won exaples on word to see how it works out
<td width="200" height="75" valign="top">
You can see websites are done by everyone...
modifier_guy
02-22-2004, 03:58 AM
<HTML>
<HEAD>
<TITLE></TITLE>
<META name="description" content="">
<META name="keywords" content="">
<META name="generator" content="CuteHTML">
</HEAD>
<BODY BGCOLOR="#000000" TEXT="#FFFFF" LINK="#0000FF" VLINK="#800080">
<table border="1" bordercolor="blue" crllpadding="0" cellspacing="0" width="100" Height="600" rules="none" align="left">
<tr>
<tr>
<td>
Menu Bar
</td>
</table>
<table border="1" bordercolor="blue" crllpadding="0" cellspacing="0" width="875" Height="600" rules="none" align="right">
<tr>
<tr>
<td>
hello welcome
</td>
</table>
</BODY>
</HTML>
ok this is my site so far i just started by setting the layout out. my problem is the text is in the center of the table how do i fix that?
I suggest: use dreamweaver...
Paul Jr
02-22-2004, 01:48 PM
I suggest: Learn XHTML and CSS and ditch the tables :D.
Anyhoo, you missed two closing </tr> tags, and by default things middle align in tables I believe, so I added valign="top" to the <td>'s that contained your text.
<table border="1" bordercolor="#0000FF" cellpadding="0" cellspacing="0" width="100" height="600" align="left">
<tr>
<td valign="top">
Menu Bar
</td>
</tr>
</table>
<table border="1" bordercolor="#0000FF" cellpadding="0" cellspacing="0" width="845" Height="600" align="right">
<tr>
<td valign="top">
Hello welcome
</td>
</tr>
</table>
I also reduced the width of the table, so it wouldn't cause a horizontal scrollbar.
modifier_guy
02-22-2004, 04:02 PM
ahh ok i will try that, cus i dont like how it is always making my text centered in the middle of the table. i iwll tyr that thankyou