wowimfancy
09-15-2005, 02:31 PM
I have two tables beside each other, one to the left which is the menu and one to the right which is the main body. i can align the text in the menu with no problem, but no matter what i do with the text in the main table, it wont move. The text is always to the left. if i use a 'center' tag, it makes the text centered, but off to the left. here's a screen capture so you can see what im talking about:
http://i2.photobucket.com/albums/y42/wowimfancy/screen.jpg
nowhere in my code is there an align="left" tag, so i dont know what the problem is.
pretender
09-15-2005, 02:53 PM
Could you post your coding or a link to the page thnx.
wowimfancy
09-15-2005, 03:01 PM
<body bgcolor="#000000">
<center>
<table cellpadding=0 cellspacing=0 border=10 bordercolor="#000000" width=700>
<tr width=700>
<td width=700 height=248>
<img src="http://i2.photobucket.com/albums/y42/wowimfancy/ohlala.jpg" width="750" height="248"></td></tr>
<tr width=750>
<td width=750 bgcolor="#ffffff">
<table cellpadding=0 cellspacing=0 border=0 width=750>
<tr width=775><td width=375 bgcolor="#00ccff" valign=top>
<BR>
<table cellpadding=0 cellspacing=5 border=0 width=230>
<tr width=150>
<td width=150>
<br><br>
<b>
<a href="" class="a">Pictures</A><BR><br>
<a href="" class="a">Stories</a><BR><br>
<a href="" class="a">Blog</a><BR><br>
<a href="" class="a">Bio</A><BR><br>
<a href="" class="a">Guestbook</a><BR><br>
<a href="" class="a">Request</a><BR><br>
<a href="" class="a">Subscribe</A>
</b>
<br><br>
<img src="http://i2.photobucket.com/albums/y42/wowimfancy/02deea44.jpg">
</td></tr></table>
</td>
<td width=650 valign=top align=right>
<table cellpadding=0 cellspacing=0 border=0 width=500>
<tr width=500>
<td width=500>
<table cellpadding=0 cellspacing=0 border=0 width=500>
<tr width=500 align=center>
<td width=750 valign=center>
<br><br>
<font size=2><b>
<font color="purple">
<p align="center">text text text text text text</p></font>
<BR><BR></font>
<br>
<td width=250>
</td>
</td></tr></table>
</td></tr></table>
</td></tr></table>
</td></tr>
</table>
</center>
</body></html>
pretender
09-15-2005, 05:18 PM
I don't know if this is what you need but you can change the align (aligns your text To the right, left, and center in the columns),and valign (Starts your text at the top, middle, and bottom of the columns)
<html>
<head>
<title>Page Title</title>
</head>
<body bgcolor="#000000">
<center>
<table cellpadding="0" cellspacing="0" border="10" bordercolor="#000000" width="700">
<tr>
<td width="700" height="248">
<img src="http://i2.photobucket.com/albums/y42/wowimfancy/ohlala.jpg" width="750" height="248"></td></tr>
<tr>
<td width="750" bgcolor="#ffffff">
<table cellpadding="0" cellspacing="0" border="0" width="750">
<tr>
<td width="375" bgcolor="#00ccff" valign="top">
<table cellpadding="0" cellspacing="5" border="0" width="230">
<tr>
<td width="150">
<br>
<b>
<a href="" class="a">Pictures</A><BR><br>
<a href="" class="a">Stories</a><BR><br>
<a href="" class="a">Blog</a><BR><br>
<a href="" class="a">Bio</A><BR><br>
<a href="" class="a">Guestbook</a><BR><br>
<a href="" class="a">Request</a><BR><br>
<a href="" class="a">Subscribe</A>
</b>
<br><br>
<img src="http://i2.photobucket.com/albums/y42/wowimfancy/02deea44.jpg">
</td></tr></table>
</td>
<td width="650" valign="top">
<table cellpadding="0" cellspacing="0" border="0" width="500">
<t>
<td width="750" valign="top" align="center">
<br>
<font size="3" color="purple"><b>
Line 1 text text text text text text<br>
Line 2 Text Text Text<br>
Line 3 Text Text<br>
Line 4 Text
</b>
</font>
</td>
</td></tr></table>
</td></tr></table>
</center>
</body>
</html>
wowimfancy
09-16-2005, 05:00 PM
I tried using the align tags and it aligns the text, but pulls it to the left still. i figured out what the problem was though.... for some reason i had an extra table on the right in the main body part ... that was why the text wouldn't go to the other side of the table. my problem's fixed... but thank you for your help nonetheless!