Jump to content

Table Issue


Guest Gwydion

Recommended Posts

Guest Gwydion

I have built a html table for posting in a gaming forum I use (see below), but after I submit it and go back to view it there is a huge blank space between where my post starts and where the table appears. I'm sure there is a simple remedy, just not sure what it is. Thanks for the help in advance.

<table border="1" cellpadding="5" align="center"><tr>  <th></td>  <th align="center">No.</td>  <th align="center">Rank</td>  <th align="center">NW</td>  <th align="center">NW% Increase</td>  <th align="center">Land</td>  <th align="center">Land% Increase</td></tr><tr>  <th>Gwydion</td>  <td align="center">779</td>  <td align="center">60 (+25)</td>  <td align="center">8,037,181</td>  <td align="center">40</td>  <td align="center">14,370</td>  <td align="center">26.2</td></tr><tr>  <th>Azar</td>  <td align="center">560</td>  <td align="center">486 (-519)</td>  <td align="center">4,363,150</td>  <td align="center">107.1</td>  <td align="center">14,337</td>  <td align="center">27.5</td></tr><tr>  <th>Flippy</td>  <td align="center">2512</td>  <td align="center">1283 (-213)</td>  <td align="center">2,993,129</td>  <td align="center">79.8</td>  <td align="center">13,149</td>  <td align="center">25.9</td></tr><tr>  <th>Arixion</td>  <td align="center">1891</td>  <td align="center">626 (-927)</td>  <td align="center">4,065,178</td>  <td align="center">153.6</td>  <td align="center">12,114</td>  <td align="center">15.2</td></tr><tr>  <th></td>  <td></td>  <td></td>  <td></td>  <td></td></tr><tr>  <th></td>  <td></td>  <td></td>  <td></td>  <td></td></tr><tr>  <th></td>  <th>Ave Nw</td>  <th>Ave Nw% Increase</td>  <th>Ave Land</td>  <th>Ave Land% Increase</td></tr><tr>  <th>CU Average</td>  <td align="center">4,864,660</td>  <td align="center">75.1</td>  <td align="center">13,492</td>  <td align="center">23.8</td></tr><tr>  <th>Ausgentos Ave</td>  <td align="center">4,592,088</td>  <td align="center">63.8</td>  <td align="center">13,077</td>  <td align="center">24.4</td></tr><tr>  <th>Sanct Ave</td>  <td align="center">3,940,000</td>  <td align="center">51</td>  <td align="center">11,821</td>  <td align="center">19.3</td></tr></table>

Link to comment
Share on other sites

Your structure is slightly incorrect. you had <td> mixed with <th>, it should look like this, all <th> in the first row then thereafter <td>

<table border="1" cellpadding="5" align="center"><tr>  <th> </th>  <th align="center">No </th>  <th align="center">Rank </th>  <th align="center">NW </th>  <th align="center">NW% Increase </th>  <th align="center">Land </th>  <th align="center">Land% Increase </th></tr><tr>  <td>Gwydion</td>  <td align="center">779</td>  <td align="center">60 (+25)</td>  <td align="center">8,037,181</td>  <td align="center">40</td>  <td align="center">14,370</td>  <td align="center">26.2</td></tr></table>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...