Appnitro Software Forums » MachForm

multiple fields on one line

(8 posts)
  • Started 1 year ago by svenjosten
  • Latest reply from svenjosten

  1. I added code to the end of the css file as suggested in an older topic:
    #li_1{
    float: left;
    width: 40 %;
    clear: both;
    }

    #li_2{
    float: left;
    width: 40 %;
    }

    #li_3{
    clear: both;
    }

    However, no succes: the fields stay each on their separate line. I've tried changing the % of the width but no result.
    What am I doing wrong ?

    Posted 1 year ago #
  2. Are you having the correct id numbers already?

    Also, can you let us know the URL to your form? That would help us to see the issue.
    You can mail it if you don't want to post the URL here.

    Mail to: customer.service [at] appnitro.com

    Posted 1 year ago #
  3. Hi Yuniar Thanks for your swift reaction. I checked in the source of the html and the id's are indeed li_1, li_2 and than li_3. I've actually only tried out the form via the Machform interface and it remains unchanged there. The URL is
    http://svenjosten.byethost4.com/machform/view.php?id=1 Help very much appreciated.

    Posted 1 year ago #
  4. the form is password protected :-)
    can you let me know the password or disable the password please?

    Posted 1 year ago #
  5. Sorry about that. I turned off the password now.

    Posted 1 year ago #
  6. I've also mailed the complete css file now, case you'd need it.

    Posted 1 year ago #
  7. We've got your CSS file. Thank you.
    It seems the problem come from "space" character in width value. Try to remove the "space" character in there. From :

    #li_1{
    float: left;
    width: 40 %;
    clear: both;
    }
    
    #li_2{
    float: left;
    width: 40 %;
    }
    
    #li_3{
    clear: both;
    }

    to

    #li_1{
      float: left;
      width: 40% ;
      clear: both;
    }
    
    #li_2{
      float: left;
      width: 40% ;
     }
    
    #li_3{
      clear: both;
    }
    Posted 1 year ago #
  8. Small problem - great support. Thanks

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.