How can I change (reduce) the default spacing between columns. I tried using css [width:nnpx] but there is still a minimum space between the columns that have data. I can increase the width but not decrease below the minimum spacing.
Thanks
How can I change (reduce) the default spacing between columns. I tried using css [width:nnpx] but there is still a minimum space between the columns that have data. I can increase the width but not decrease below the minimum spacing.
Thanks
Spacing between columns is defined by the used theme's 'td.ReportOutCell'-padding. You can override the default values in your own css. Use dbr.purehtml if you want to change only some of the reports and use user/userstyle.css if you want to change all the reports.
Definition like:
td.ReportOutCell {padding-left:2px;padding-right:2px}
,will reduce the spacing to 4 pixels.
--
myDBR Team
Thanks! That worked perfectly
You must log in to post.