An extra strange line above table in node
Geir19 - August 20, 2009 - 12:05
I have created a table inside a node. The table is fine but there is a strange thin line at the top of the table. It's a gray thin line. Is there a way to remove it?!

Theme?
Have you tried changing the theme to see if that makes a difference? Also, you may can edit the theme settings (global or theme-specific) to remove the line... perhaps there's a setting related to that for tables?
It looks like the problem is
It looks like the problem is theme independent. I still see the line after changing the theme. Which files I need to verify?!
"Firebug" or "Web Developer"
Hi Gear,
Drupal loads a lot of css files beyond your theme css'. And (as you know) you need to find the css rule which is causing that gray line.
To do this you may want to use some very powerful Firefox add-ons as "Firebug" or "Web Developer".
They will help you to narrow down all the style rules referring to an html element, even if they were part of Drupal core files.
Hi Geir19, I'm using this
Hi Geir19,
I'm using this Drupal module to get rid of all those "hidden" styles (works with Firefox):
Should help you to find that "line"!
Bye
Zoo
I had such problem in
I had such problem in Bluemarine. Are you using this theme?
You need to paste some text in style.css:
tbody {
border-top: 0px solid #ccc;
}
And then clean a site's cache.
In the system.css you can see table border's parametres. This problem because of them.
Thank You Irina
FYI:
"Well" (above) has solved this problem for me, and I am using the Deco theme.
I added the css to my style.css document and it was fixed.