Unable to set TD cell padding.
Attempting to override the bottom padding of a custom skin without success.
HTML:
Results Grid
div.gridbox_results table.obj td
{
padding: 1px 1px 50px 1px;
}
Thanks very much.
In case of grid in single-line mode, there is one more class , which affects padding , so you can extend you css rule
div.gridbox_results table.obj tr td
{
padding: 1px 1px 50px 1px;
}
or just use !important flag
div.gridbox_results table.obj td
{
padding: 1px 1px 50px 1px !important;
}
P.S. by the way, you may not specify index in addRow command, it will add row to the end of the grid by default
Thanks that worked. Still a newbie but I’m impressed with your product and your support. Good job! Also thanks for the tip.
May I also recommend adding the “div.gridbox_results table.obj tr td” style to the styles list in your documentation under Grid:Visual Appearance:Creating Custom Skin.