PDA

View Full Version : Table inside a Module


NLSMike
06-16-2008, 04:25 PM
I have created the following table as a template for other things I want to do but I am having a problem with it. After I put the code into the module and I view it the code pushes the table down x amount in the module - View Here (http://www.nolimitsportsline.com/index.php?pageid=nflplayerprofilesG)

Hopefully someone can help me with this problem.

Table Code I am using

<table width="740" border="2" cellspacing="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

bobster65
06-16-2008, 04:39 PM
well, viewing your source code can tell you a lot ..

take a look at you will see whats happening.. you have <br /> after every line of code.. thats why you have the huge space above your table.. Check your code to see why its inserting BRs after each line.


<table width="740" border="2" cellspacing="0" cellpadding="0"><br />
<tr><br />
<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
</tr><br />
<tr><br />

<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
<td>&nbsp;</td><br />
</tr><br />
</table>

NLSMike
06-16-2008, 05:07 PM
I use dreamweaver and it must automatically put them in.

Marco van Herwaarden
06-17-2008, 09:18 AM
For assistence with vBAdvanced modules, you are better off by posting on their support forums.