Appnitro Software Forums » MachForm

Space between checkbox and choice

(3 posts)

  1. Hi, I hope I can explain this. Is there a way I can reduce the space between the checkbox and the options?

    Thanks!

    Posted 6 months ago #
  2. 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%;
    }
    Posted 6 months ago #
  3. 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.

    Posted 6 months ago #

RSS feed for this topic

Reply

You must log in to post.