|
Anytime you use the "return" key to start a new line of code, webtv adds a line break code <br> to your overall source code----these additional <br> codes are making the large spaces above the table.
After the code has been "tightened-up" (eliminating the line breaks caused by using the "return" key), then the table code will look like this, and appear where you want it to, such as below: <table border="9" align="center"><tr><th>Team</th><th>Win</th><th>Loss</th><th>Tie</th></tr><tr><td>The Beach Bums</td><td>1</td><td>0</td><td>0</td></tr><tr><td>The Big Hurt</td><td>1</td><td>0</td><td>0</td></tr><tr><td>Knuckle Shufflers</td><td>1</td><td>0</td><td>0</td></tr><tr><td>Milk Toast</td><td>0</td><td>1</td><td>0</td></tr><tr><td>Lobsta Chowda</td><td>0</td><td>1</td><td>0</td></tr><tr><td>The Old Lyme Ticks</td><td>0</td><td>1</td><td>0</td></tr></table>
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
If you don't use the "tightening-up" process above, a "quick fix" is to add <html> at the very top of the editing area, but this might cause computer viewers of your page problems due to multiple <html> tags. This "quick fix" does not always eliminate the large gap above the table----sometimes it does, and sometimes it doesn't. It did work for this area and this table below:
|
|
This is what the table code actually looks like after webtv has added the additional line breaks (during the "publishing" process). The additional <br> codes are only viewable if you view the source code of the page after it has been published; you will not see them when you are working in the editing areas of your page. All the <br> codes were added by webtv. The addition of the <br> codes is what is causing the large gap above the table in the first example at the top of the page. <table border="9" align="center"><br> <tr><br> <th>Team</th><br> <th>Win</th><br> <th>Loss</th><br> <th>Tie</th><br> </tr><br> <tr><br> <td>The Beach Bums</td><br> <td>1</td><br> <td>0</td><br> <td>0</td><br> </tr><br> <tr><br> <td>The Big Hurt</td><br> <td>1</td><br> <td>0</td><br> <td>0</td><br> </tr><br> <tr><br> <td>Knuckle Shufflers</td><br> <td>1</td><br> <td>0</td><br> <td>0</td><br> </tr><br> <tr><br> <td>Milk Toast</td><br> <td>0</td><br> <td>1</td><br> <td>0</td><br> </tr><br> <tr><br> <td>Lobsta Chowda</td><br> <td>0</td><br> <td>1</td><br> <td>0</td><br> </tr><br> <tr><br> <td>The Old Lyme Ticks</td><br> <td>0</td><br> <td>1</td><br> <td>0</td><br> </tr><br> </table><br> |
|
|
|
|
| |
|
|
||
|
|
||
|
|
||