Skip to content

24 ways to impress your friends

Vote down?

Andy Whitlock

Good form guide Yaili – Thank You! Based around your theory for giving a pointer upon hovering over the option labels… Great idea, personally I would extend this and also give a pointer for the option button itself. Changing the following…

form#payment fieldset fieldset label:hover {
cursor: pointer;
}

to…

form#payment fieldset fieldset label:hover,form#payment input[type=radio]:hover{
cursor: pointer;
}

which would provide a pointer for all radio buttons on the payment form.