I am making a custom theme based off framework and this line appears at the top of my page, I can't figure out what it is, I have gone through the page.tpl.php file and can't figure out what it is, has anyone else had this before?

Comments

JmsCrk’s picture

What's the line, dude?

| websites | drupal | marketing || chocchip.com.au |

webpoga’s picture

can you give us a screenshot or something..

maybe its a css issue. I encountered this many times in such cases which:

 <tbody></tbody>
  or 
 <th></th>

has a border-bottom

so to fix this, just include this in your css:

th, tbody {
   border:none;
}

Good luck!