Im trying to write css for my website,
http://doarna.com/%D7%93%D7%95%D7%90%D7%A8-%D7%A0%D7%A2/#gf_3
It suppose to design the checkboxes but unfortunly when I put it in advenced tab it doesnt work.
For making it work I just wrote it for each checkbox, but I suppose to have many of them so doing it without classes is impposbile.
example of my css code is:
[css]
.DesignCheckBox label{background-repeat: no-repeat;
 		       border: 1px solid #DDD;
                       height: 180px;}I also want to add hover property, is it possible to put in the same class or should I give it class of its own. The syntax below works but I need it as class.
[css]
 li.gchoice_4_1 label:hover {
 		        border: 1px solid  #EE0000;
                       }Thanks for your help.

