Welcome to Gaia! ::


Ok oh my web page here and well as you can see the login box thing is below the links tables. I want it to be next to the links tables on the right. I don't know how and i have problems with the tables in firefox i dunno what is wrong. Any help?

I want the links to go down and on the one that are actually down i want to be down too but also in a little too.
You realize that it says 'tutorials' twice?

So, really <tr> means table row, and <td> means table data cell. So everything on a line should be <tr><td>Home</td></tr> then the next one. For the iframe, I'd put it in a cell in the top row, with a rowspan="#" command so it spans more than one row.

<table border="0" cellpadding="3" cellspacing="1">
<tr><td><a href="index.php">Home</a></td>
<td rowspan="6" width="500">
and here's a wider middle section
</td>
<td rowspan="6">
the iframe
<iframe FRAMEBORDER="0" BORDER=0 width=200px
height=175px src="/forums/lb_login.php" align="right"
style="left: 0px; top: 0px; scrolling=auto"></iframe>
</td>
</tr>
<tr><td><a href="tutorials/index.php">Tutorials</a></td></tr>
<tr><td><a href="review/index.php">Reviews</a></td></tr>
<tr><td><a href="review/movie.php">Movies</a></td></tr>
<tr><td><a href="review/game.php">Games</a></td></tr>
<tr><td><a href="review/product.php">Products</a></td></tr>
</table>



Or you could put all the links in one cell, with <br> after each for a new line. Then a cell in the middle, and a last cell for the iframe.

So, like this:

<table border="0" cellpadding="3" cellspacing="1">
<tr>
<td>
<!--So this td cell had all the links.-->
<a href="index.php">Home</a><br>
<a href="tutorials/index.php">Tutorials</a><br>
<a href="review/index.php">Reviews</a><br>
<a href="review/movie.php">Movies</a><br>
<a href="review/game.php">Games</a><br>
<a href="review/product.php">Products</a><br>
</td>
<td>
<!--then this one has a main body section-->
Hello World!
</td>
<td>
<iframe FRAMEBORDER="0" BORDER=0 width=200px
height=175px src="/forums/lb_login.php" align="right"
style="left: 0px; top: 0px; scrolling=auto"></iframe>
</td>
</tr>
</table>




Does that help at all?
Ok good but i want the ones below Review to be indented in and kind of like sublevels of Review. sweatdrop
double post, damn archive sweatdrop stressed

6,000 Points
  • Mark Twain 100
  • Invisibility 100
  • Megathread 100
laforge
Ok good but i want the ones below Review to be indented in and kind of like sublevels of Review. sweatdrop


well, you could make more cells in each row, and set the colspan (like rowspan, but across instead of down) of the top cell accordingly.

or you could use spaces to indent them: User Image - Blocked by "Display Image" Settings. Click to show.

or if you know about CSS, you could use that: style="text-indent:10px", 10px being changed to however many pixels you wanted (or use % instead of pixels)
laforge
Ok good but i want the ones below Review to be indented in and kind of like sublevels of Review. sweatdrop


What I'd do is use this bit:

copperdrake

<td>
<!--So this td cell had all the links.-->
<a href="index.php">Home</a><br>
<a href="tutorials/index.php">Tutorials</a><br>
<a href="review/index.php">Reviews</a><br>
<a href="review/movie.php">Movies</a><br>
<a href="review/game.php">Games</a><br>
<a href="review/product.php">Products</a><br>
</td>



and make it a list. thats <ul> (ul is unordered list, bullets; while ol is ordered list, numbers) for the list and <li> for each bullet. so:

<!--So this td cell had all the links.-->
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="tutorials/index.php">Tutorials</a></li>
<li><a href="review/index.php">Reviews</a></li>
<!--then make a new embedded list so it's indented-->
<ul>
<li><a href="review/movie.php">Movies</a></li>
<li><a href="review/game.php">Games</a></li>
<li><a href="review/product.php">Products</a><br></li>
</ul>
</ul>
</td>


although I just tested it, and the links may be a little too indented. So it's whatever you want to do really. And you could make the bullets not visible and the indent smaller with CSS I think.

Quick Reply

Submit
Manage Your Items
Other Stuff
Get GCash
Offers
Get Items
More Items
Where Everyone Hangs Out
Other Community Areas
Virtual Spaces
Fun Stuff
Gaia's Games
Mini-Games
Play with GCash
Play with Platinum