stargrl329
05-22-2003, 12:09 AM
hey... i'm having trouble with a table on my web page. this page is meant to be a viewable example of a layout that you can download on my site. you can view my troubled page here (http://etoile.brad.com/test.html). as you can see, the table on the left is meant to envelop all the links, from "navigation" [that one is just text] to the "contact" link. however, the links are above the table, and the table is just a box under the links. this is meant to be sort of a sidebar-navigation effect... i'm new to tables and i just can't figure out what i'm doing wrong with it. any help greatly appreciated!
<<*'º·-..-·º·-..lauren..-·º·-..-·º'*>>
amicus
05-22-2003, 12:18 AM
here's the body portion of your code. you just forgot to use the 'td' tags, no biggy :). the 'mailto' link goes on one line and for some reason it got all weirded out.
<body bgcolor="plum">
<font face="comic sans ms" size="1" color="mediumorchid">
<table bgcolor="orchid" border="2" bordercolor="purple">
<tr>
<td><b>*NAVIGATION*</b></td>
</tr>
<tr>
<td><a href="etoile.brad.com/index.html">| Home |</a></td>
</tr>
<tr>
<td><a href="etoile.brad.com/graphics.html">| Graphics |</a></td>
</tr>
<tr>
<td><a href="yourdomain.com/blog.html">| Blog |</a></td>
</tr>
<tr>
<td><a href="yourdomain.com/photos.html">| Photos |</a></td>
</tr>
<tr>
<td><a href="yourdomain.com/links.html">| Links |</a></td>
</tr>
<tr>
<td><a href="mailto=pinkpenguin3510@aol.com">| Contact |</a></td>
</tr>
</table>
</font>
<center>
<font face="comic sans ms" size="3" color="purple">
SaMpLe LaYoUt . BaSiC PuRpLe
</font>
<hr><br>
<font face="comic sans ms" size="1" color="purple">
This is a preview of the Basic Purple layout. It's absolutely free to download -- just customize and copy onto your site!
</font>
</center>
</body>
stargrl329
05-22-2003, 12:24 AM
wow i get it! thank you sooo much ;-D
_lauren_