Community & Support

problem with top lines in template

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

Same problem

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

I had a somewhat similar problem

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

thanks for the path

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

This solved the problem for me also but...

All is had to do is comment out the following:

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

in system.css

Thanks!

great

Really work to comment only this part of the CSS code

I would recommend you to

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

Great suggestion!

Thanks Martin!
Sc0tt