| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: May 2003
Posts: 12
![]() | Simple html question Hey, I'm trying to put three different tables next to each other. However, one is alwasy up the top alone and the other two are next to each other just below it. Any suggestions? I'm trying to use, align="left" then align="center" then align="right" but it wont work. The one in the middle is the main one so maybe there's something there, like the two on the right were originally there, i'm trying to add the one on the left. All the best, Mark |
| |
| | #3 (permalink) |
| NamePros Regular Join Date: Sep 2004 Location: Earth
Posts: 394
![]() ![]() | What numin said is the only way I know that is possible. Just create the first table with 3 columns 1 row. Then create a new table inside of each row. Here is your bone dry code for it. Just mod it to your liking. Code: <table width="800" border="0" cellspacing="5" cellpadding="0">
<tr>
<td><table width="200" border="0" align="center" cellpadding="0" cellspacing="5">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
<td><table width="200" border="0" align="center" cellpadding="0" cellspacing="5">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
<td><table width="200" border="0" align="center" cellpadding="0" cellspacing="5">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table> |
| |
| | THREAD STARTER #4 (permalink) |
| New Member Join Date: May 2003
Posts: 12
![]() | hopefully this helps Hey, To make it easier, here's the code and also, a copy of the site. What i want to do is put the two "here's some vital information, and the "title of work" tables all next to each other. Any help greatly appreciated! ????: NamePros.com http://www.namepros.com/programming/55831-simple-html-question.html The site can be seen at, click here and here's the partial code: <html> <head> <title>Title</title><meta name="Description" content="Meta Stuff"> <meta name="Keywords" content="keywords, more, needed"> <style> body {font-family:verdana;font-size:9pt;} td {font-family:verdana;font-size:9pt;} a:hover {text-decoration:none;color:#FFB903;} .border {border:1px solid black;} input {border:1px solid black;background:#FFD695;font-size:8pt;} submit {border:1px solid black;background:#FFD695;font-size:8pt;} </style> </head> <body leftmargin="0" topmargin="0" bgcolor="FFFFFF" link="blue" alink="blue" vlink="blue" text="black"> <table cellspacing="0" cellpadding="0" border="0" width="100%" height="100%"> <tr> <td background="blank.gif" height="90" width="100%" colspan="2"> <img src="nologo.gif" alt="your logo here"><a target="_new" href=http://www.url.com><img src="noad.gif" border=0></a> </td> </tr> <tr> <td background="blank.gif" height="30" width="100%" colspan="2"> <a href="http://www.url.com"><img src="home.gif" border="0"></a><a href="mailto:submit@url.com"><img src="nologo.gif" border="0"></a><a href="http://www.url.com/books"><img src="books.gif" border="0"></a><a href="mailto:webmaster@url.com"><img src="contact.gif" border="0"></a><a href="http://www.url.com/links"><img src="links.gif" border="0"></a> </td> </tr> <td width="12% align="left" valign="top"> <table width="90%" border="0" align="left" cellpadding="2" height="100%"> <tr valign="top"><td background="blank.gif" height="20" class="border"><B><font size="1" face="Verdana">Here's Some vital informationI'm trying to put three different tables next to each other. However, one is alwasy up the top alone and the other two are next to each other just below it. Any suggestions? I'm trying to use, align="left" then align="center" then align="right" but it wont work. The one in the middle is the main one so maybe there's something there, like the two on the right were originally there, i'm trying to add the one on the left.</a></B></td></tr> ????: NamePros.com http://www.namepros.com/showthread.php?t=55831 </table> </td> </tr> <tr valign="top"> <td width="75%" align="center" valign="top"> <table width="90%" cellpadding="3" border="0" align="center" class="border" height="100%"> <tr valign="top"> <td valign="top" background="logo.gif" height="20" class="border"> <b><font size="3" face="Verdana">Title of Work</b> </td> </tr> <tr valign="top"><td valign="top"> Your content will go here. And since we're such nice guys, you don't have to link back to us <br> Although, we would appreciate a link if you want to. All the images you see here have been included without text on them so you can edit them. Have fun.(disregard this please)<br>-- <a href="http://www.url.com" target="_blank">Url.com</a><p> </td></tr> </table> </td> <td width="12% align="right" valign="top"> <table width="90%" border="0" align="right" cellpadding="2" height="100%"> <tr valign="top"><td background="blank.gif" height="20" class="border"><B><font size="1" face="Verdana">Here's Some more vital informationI'm trying to put three different tables next to each other. However, one is alwasy up the top alone and the other two are next to each other just below it. Any suggestions? I'm trying to use, align="left" then align="center" then align="right" but it wont work. The one in the middle is the main one so maybe there's something there, like the two on the right were originally there, i'm trying to add the one on the left.</a></B></td></tr> <tr valign="top"><td class="border"> <CENTER><font size="1" face="Verdana">Google Goes here<br></B><br></CENTER> <br><br><br><br><br> </td> </tr> </table> </td> </tr> <tr> <td width="100%" height="30" background="blank.gif" colspan="2"> <center><font size="2" face="Monotype Corsiva">Copyright 2004 Ltd. All rights reserved.</center> <CENTER><font size="1" face="Verdana"><a href="http://www.url.com/terms" target="_blank">Terms and Conditions</a> - <font size="1" face="Verdana"><a href="http://www.url.com/adverts" target="_blank">Advertising</a> - <font size="1" face="Verdana"><a href="http://www.wurl.com/privacy" target="_blank">Privacy Policy</a></CENTER> </td> </tr> </table> </body> </html> |
| |
| | #6 (permalink) | ||||
| NamePros Member Join Date: Jul 2004 Location: U.S.A.----- Ohio
Posts: 117
![]() |
very good idea!
__________________ ServeTraffic.Com Make money with your traffic, Join our publisher network click here to find out more. | ||||
| |
| | #8 (permalink) |
| Senior Member Join Date: Aug 2004 Location: Washington
Posts: 4,327
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | spam? can't you read above?
__________________ Download youtube videos at www.HugYouTube.com -NO LINKS TO PARKED PAGES- Anonymous access at www.Banned.net |
| |