ID:275610
 
I'm experimenting with borders and rounded corners, and have already run into a road block. There is a white space that I don't want. It's clear where it is. I don't know why it's there. I set the cellspacing and cellpadding.

Anyway, here's the site. http://www.freewebs.com/bacsikdesigns

And here's the HTML:
<html>
<head>
<title>Bacsik Designs | Home</title>
</head>
<body bgcolor="white">
<center>
<table width="700" cellspacing=0 cellpadding=0 valign="top">
<tr>
<td height="50" width=50px><img height="50" width="50" src="images/top_left_blue.png">
</td>
<td height="50" width="600"><img height="50" width="600" src="images/top_blue.png">
</td>
<td height="50" width="50"><img height="50" width="50" src="images/top_right_blue.png">
</td>
</tr>
<tr>
<td height="500" width="50"><img height="500" width="50" src="images/left_blue.png">
</td>
</tr>
</table>
</center>
</body>
Get rid of the whitespace (spaces, tabs, and carraige returns) within the <td>tags with the <img> tags. That's causing your white area.
<html>
<head>
<title>Bacsik Designs | Home</title>
</head>
<body bgcolor="white">
<center>
<table width="700" cellspacing=0 cellpadding=0 valign="top">
<tr>
        <td></td>
        <td></td>
        <td></td>
</tr>
<tr>
        <td></td>
</tr>
</table>
</center>
</body>
In response to Shadowdarke
Thanks!

Now why didn't I think of that?
Ugh!
I've got three main problems:
1) Even though I defined special link classes for the "Bacsik Designs" banner thing, it treats them as regular links
2) I can't seem to figure out how to valign my links column (The one that says "Test"), other than making a totaly new table.
3) On the top 3 columns with the bg image being the rounded corners and top, I can make the height 50px and it just shortens it. On the bottom one, it chops off the bottom of the image.
In response to Dragon of Ice
Dragon of Ice wrote:

2) I can't seem to figure out how to valign my links column (The one that says "Test"), other than making a totaly new table.

Put the valign attribute in your TD tag instead.
In response to Jon88
I tried that before, and it didn't work. All of a sudden, boom!