I've been unable to erase a grey line (that you can see trough the links below) that appears in my themes when rendered through Mozilla Firefox. This space represents the separation between the header container and the content table. This line is the top border of the content table in question, but I haven't found the way of erasing it without painting it...

...
      <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
    </div>
  </div>
[space]
<table border="0" cellpadding="0" cellspacing="0" id="content">
  <tr>
    <?php if ($sidebar_left) { ?>
	<td id="sidebar-left">
...

Here you can an image of this. The site is http://entradateatre.info (under Firefox, unexpectedly MS IE wins in this case...)

Does anybody know how to fix this? Thanks.

Comments

zeta ζ’s picture

tbody {                      system.css (line 17)
  border-top: 0px none;
}

Firefox is doing what it is told: IE is ignoring you.

If you don’t want to edit system.css use;-

.content tbody {              
  border-top: 0px none;
}
jordii’s picture

I forgot to tell that the theme is based on bluemarine, i'm trying to apply your recommendations upon the content table but them does not seem to work...

zeta ζ’s picture

Not table – tbody!

Just put the code in a .css file.

jordii’s picture

ok, solved, thanks a lot zeta-zoo.