Hi -
I've got a bound check box in a grid that is left justified, and I'd like to make the check box centered in the column. I've tried creating a CSS class where the left and right margin are set to auto, but that doesn't seem to work. Just wondering if anybody has had this problem and knows the correct CSS to use to center the check box in the grid column.
Thanks,Jeff Balcerzak
Hello Jeff,Basically adding this code
<head runat="server"> <title></title> <style type="text/css"> tbody.igg_Item>tr>td { text-align: center !important; } </style></head>