View Full Version : Why is there no border around my tables?


bane_vagabond
10-11-2003, 03:36 PM
Where's the borders around my tables? Here is my CSS Code:

<STYLE type="text/css">
<!--
body {
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #f5f5f5;
scrollbar-3dlight-color: #dcdcdc;
scrollbar-darkshadow-color: #696969;
scrollbar-shadow-color: #808080;
scrollbar-arrow-color: #696969;
scrollbar-track-color: #c0c0c0;
margin: 0px;
font-family: tahoma;
font-size: x-small;
}
-->

<!--
table {
margin: 0px;
font-family: tahoma;
font-size: 12px;
-->


<!--

a:link {
text-decoration:none;
}
a:visited {
text-decoration:none; color:#0000CD;
}
-->

<!--

td {
border:1px solid #000000;
}
td.noborder {
border:0px;
}
-->

</style>

Here is what it looks like:

http://kelp.togetherhost.com/ (colors might be hard on eyes a little, going to change bg is darker color, soon.)

bane_vagabond
10-11-2003, 03:48 PM
In fact, nothing in my CSS code is working, I just looked at the nav bar, the links arent supposed to be underlined.

MaGiCSuN
10-11-2003, 05:36 PM
you are missing an end bracket from your table part in your css. See here, the red part is what you where missing:

table {
margin: 0px;
font-family: tahoma;
font-size: 12px;}

Love,
Mirna