Jump to content

Year

Day

24 ways to impress your friends

Vote up?

  • Andy Whitlock http://andywhitlock.co.uk

    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.