Unstoppable Domains โ€” Get your daily AI drops report

Simple html question

SpaceshipSpaceship
Watch

snapous

Established Member
Impact
0
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
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
Unstoppable Domains โ€” AI StorefrontUnstoppable Domains โ€” AI Storefront
why not make 1 big table with 3 colums then put the little tables inside of it.
 
0
•••
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>
 
0
•••
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!

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:[email protected]"><img src="nologo.gif" border="0"></a><a href="http://www.url.com/books"><img src="books.gif" border="0"></a><a href="mailto:[email protected]"><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>

</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>
 
0
•••
I think you should use my code as a template and try to do it yourself. Doing things yourself is by far the best way to learn. If you need additional help with it let me know!
 
0
•••
Nunim said:
why not make 1 big table with 3 colums then put the little tables inside of it.

:kickass: very good idea!
 
0
•••
what Nunim said
 
0
•••
spam? can't you read above?
 
0
•••
0
•••
CatchedCatched
Escrow.com
Spaceship
Rexus Domain
CryptoExchange.com
Domain Recover
CatchDoms
DomDB
NameFit
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back