Appnitro Software Forums » MachForm

Line height/padding

(2 posts)
  • Started 1 year ago by TRACauctions
  • Latest reply from redityo

  1. would like to make the forms shorter. have seen other posts about changing padding in the form li section of css, but my lines still have a lot of space between them. what am i missing? http://tracauctions.com is example on homepage

    Posted 1 year ago #
  2. Hi,

    Try to search these code in your CSS Form :

    form li {
    display:block;
    margin:0;
    padding:4px 5px 2px 9px;
    position:relative;
    }

    replace to

    form li {
    display:block;
    margin:0;
    padding:0px 5px 0px 9px;
    position:relative;
    }

    then try to search these code, to change "label" description "line-height" :

    label.description {
    border:medium none;
    color:#222222;
    display:block;
    font-size:95%;
    font-weight:700;
    line-height:150%;
    padding:0 0 1px;
    }

    change to

    label.description {
    border:medium none;
    color:#222222;
    display:block;
    font-size:95%;
    font-weight:700;
    line-height:100%;
    padding:0 0 1px;
    }

    but if it's not short enough, maybe you can set label description have same line with the field. Here is the url to do that :

    http://www.appnitro.com/forums/topic/label-038-input-box-on-same-lin?replies=9

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.