Hi guys,
My CSS does some general form formatting, but when I use a checkbox, it applies the border around it (even if I specift border: 0px
. I just want the checkbox on it's own.
What do I need to add?
My CSS does some general form formatting, but when I use a checkbox, it applies the border around it (even if I specift border: 0px

What do I need to add?
Code:
/* General form settings */
form
{
margin:0;
}
form p
{
clear:left;
margin:2px 0;
}
form span.warning
{
margin-left:0.25em;
color: #ff0000;
}
fieldset
{
margin:10px;
border:1px solid #d9d9d9;
padding-bottom:10px;
}
legend
{
margin:0 0 0.5em 0;
padding:0.25em 0.5em;
background-color: #404040;
color:#fff;
font-size:1em;
font-weight:700;
}
label
{
float:left;
width:220px;
margin:2px 0;
font-weight:700;
color: #404040;
vertical-align:middle;
}
input, textarea
{
float:left;
margin:2px 0;
border:1px solid #d9d9d9;
font-family:Arial,Geneva,Helvetica,sans-serif;
font-size:1em;
color:#333;
background-color:#fff;
}
#checkbox
{
width:100%
border: 0px;
}
input
{
width:20em;
}
select
{
float:left;
margin:2px 0;
}
input.button
{
float:none;
width:10em;
padding:0px 7px 0px 7px;
background-color:#d9d9d9;
color:#000;
line-height:normal !important;
text-align:center;
font-weight:700;
}