I have this problem. I don't know where that line come from - link.

http://gdt-helios.com.pl/link.jpg

I've looked all the css file (style.css) and I couldn't find it. It appears only in FireFox. In the standard css (no modification) it exists too, but it's hardly see - link below.

http://gdt-helios.com.pl/link1.jpg

Can anyone tell how to remove it?

Thanx for answers.
goodghost

Comments

effebi’s picture

Try using webdeveloper's Firefox addon

goodghost’s picture

even if i use the webdeveloper's Firefox addon the line will be still shows in normal FF browser

US421’s picture

The Firefox plugin will only let you find out which element is featuring the line. I assume it is a border added to one of the divs. You can then go to the CSS file and remove the border or whatever is producing the line.

Otherwise, if your text editor has a search you can look for border-bottom or border-top and find it that way. Provided it is in fact a border. :)

goodghost’s picture

that's true, but the fact is that I checked the color of this border, it's #ccc, I've changed every #ccc color in style.css to #fff and it still shows, I'm not talking only about borders in css, I've changed every color starts in #ccc :/

zahor’s picture

Firefox will allow you to highlight the element and "View Element Source" (or something to that effect).

Or...if you provide a link to the livesite, I could look at it and tell you how to fix it.

goodghost’s picture

I'll be very grateful,

here you are:
http://oszukani.net/

US421’s picture

Try this:

Remove

tbody {
  border-top: 1px solid #ccc;
}

from http://oszukani.net/modules/system/system.css

US421’s picture

Actually that is not the Drupal way, it will not survive an upgrade. Try putting

tbody {
  border-top: none;
}

in your styles.css

goodghost’s picture

thank You very very much m8,

it works perfect,
thanx again

ToneTheBone’s picture

I was looking all over for this. Thanks! It worked for me too.