i begin to do a template based in garland code everything looks good but i have a little anoying detail
i do a template wiht tables (sorry) and i saw a horizontal line in top of each table.

i cant discover where is the css code controlling this horizontal line you can see the problem here:

http://www.crswork.com/?q=node/6

Comments

spankee’s picture

I have the same problem.
This only happens in Firefox.

hruodland’s picture

You might look at /modules/system/system.css.

koffer’s picture

i comment this part of the css

/*tbody {
border-top: 1px solid #ccc;
}
tbody th {
border-bottom: 1px solid #ccc;
}
thead th {
text-align: left;
padding-right: 1em;
border-bottom: 3px solid #ccc;
}*/

and the lines disapear

Web designer from mexico.

Sc0tt’s picture

All is had to do is comment out the following:

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

in system.css

Thanks!

koffer’s picture

Really work to comment only this part of the CSS code

Web designer from mexico.

MasterSolution’s picture

I would recommend you to override the declaration in your theme's css file rather than commenting it out on the system.css file, because otherwise, you would have to do it again every time you upgrade.

You can simply put this in your theme's css file.

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

Martin
Web Solutions

Sc0tt’s picture

Thanks Martin!
Sc0tt