I'm must be missing a tag in my <table>

Goto this URL:

http://www.oil-testimonials.com/essential-oils/1793

Under the navbar you will see a space before the table border =‘1’ appears. This is not doing this on my other pages. I’ve carefully gone through the tags to see if there was a stray <br> or something but I can’t find it.

Can you spot an obvious error?

Thanks!

the errors that the w3c validator spits out on your url should give you a pretty good idea of what the problems are.

Remove the empty <p> element from the td at line 206.


<table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td bgcolor="#D5E5D2">
      <p>


<!-- ... -->

<table border ="1" cellpadding="20" cellspacing="0" align="center">

Aside from the albeit trivial syntax errors, the real issue is why are you using tables for this decidedly non-tabled structure? I suggest you drop Dreamweaver (sell it to someone you don’t like), and hand code this simple page.

cheers,

gary