Hi, I hope I can explain this. Is there a way I can reduce the space between the checkbox and the options?
Thanks!
Hi, I hope I can explain this. Is there a way I can reduce the space between the checkbox and the options?
Thanks!
You can change the padding and margin properties for those fields. Search for these code in your CSS form :
#main_body label.choice {
color:#444444;
display:block;
font-size:100%;
line-height:1.4em;
margin:-1.55em 0 0 25px;
padding:4px 0 5px;
width:90%;
}
then change to be like this :
#main_body label.choice {
color:#444444;
display:block;
font-size:100%;
line-height:1.4em;
margin:-1.3em 0 0 25px;
padding:0 0;
width:90%;
}Thank you! It was actually the space between the checkbox and the option (which I learned by trial and error is the 25px) that I was referring to, but you made the spacing better all around. Much appreciated.
You must log in to post.