This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 2

multiple fields on one line


  1. svenjosten
    Member

    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 14 years ago #
  2. yuniar

    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


    MachForm Founder

    Posted 14 years ago #
  3. svenjosten
    Member

    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 14 years ago #
  4. yuniar

    the form is password protected :-)
    can you let me know the password or disable the password please?


    MachForm Founder

    Posted 14 years ago #
  5. svenjosten
    Member

    Sorry about that. I turned off the password now.

    Posted 14 years ago #
  6. svenjosten
    Member

    I've also mailed the complete css file now, case you'd need it.

    Posted 14 years ago #
  7. redityo

    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;
    }

    MachForm Support

    Posted 14 years ago #
  8. svenjosten
    Member

    Small problem - great support. Thanks

    Posted 14 years ago #

RSS feed for this topic

Reply