From: Richard C. <rc...@gm...> - 2003-09-26 14:53:20
|
From: "Jeffrey Melloy" <jm...@vi...> > It works, it's just kind of weird. Maybe it's just different from the > released versions or something. The stylesheet is the default > "statcvs.css". None of the tables have borders, they have greybarring, > but without the borders or a different background color, it looks weird. It's supposed to look like this. Matter of taste. You can customize the stylesheet if you want the borders back. Copy statcvs.css to some other directory, and tell StatCvs to use the new stylesheet with the -css option. To get borders, remove this part: table { border-collapse: collapse; } table, thead, tfoot, tbody, colgroup, col, tr, th, td { border: none; } To get a different background for the tables (which might not be such a bad idea, after all), change the .odd rule to: .odd { color: #000; background-color: #aabbcc; } and fiddle with the background RGB values until it looks nice. |