I’m trying to figure out how to reduce the padding or margin for the filter cells inside the grid. I’m using the latest Grid-Ajax release.
I thought that this would do it:
<FilterItemStyle CssClass="GridFilterStyle" />
With the CSS class:
.GridFilterStyle
{
padding: 0px;
margin: 0px;
}
But that did not do it. So I spent the last few hours reading the skins blog and how to customize the new skins, so I thought this would work:
td.rgFilterRow_WebBlue
{
padding: 0px;
margin: 0px;
}
or
tr.rgFilterRow_WebBlue
{
padding: 0px;
margin: 0px;
}
But that did not do it. Help please.
thanks,
-sam