I need to get rid of the borders around the individual checkboxes that are rendered by a CheckBox control. Here\'s what it looks like now:
Your code isn't showing it, but apparently at some point class .formTable
is being assigned to the CheckBoxList. Just remove border: solid 1px #bbbbbb;
from the second class declaration:
.formTable tr, .formTable tr td, .formTable tr th
{
background-color: #eeeeee;
padding: 3px;
vertical-align: top;
}
Demo: http://jsfiddle.net/pgpR3/1/