Reputation: 594
I have next situation, look at the picture, please.
How can I change this padding value? I need reduce it.
Upvotes: 2
Views: 79
Reputation: 21025
The RWT Theming Reference lists a Table-Cell
CSS rule that has a padding
property, that
Defines the padding (i.e. the inner distance between border and content) for a table cell.
Without having tried, you should be able to specify a custom padding with
Table-Cell {
padding: 2px;
}
See also the RWT Theming chapter of the developer's guide for more.
Upvotes: 2