Responsive Multi-Column Form

A responsive multi-column form with example media queries for a flexible layout.

Stay in the loop: Get your dose of frontend twice a week

Fresh news, inspo, code demos, and UI animations—zero fluff, all quality. Make your Mondays and Thursdays creative!

Feedback 16

Comments are closed.
  1. is not working in chrome nor internet explorer, but yes it is working on firefox, dont know other browsers but thanks for the blueprint it looks really good.

  2. Hey Bro’s… It’s white on white font. Just sayin. I’m in chrome. Works fine.

    Mary mary… I like you more and more with this kind of stuff. Long time follower – first time commenter.

  3. This looks great, thank you very much! Can someone give me a good tutorial on how to actually make this work (send me an email with the results of the form)? I’ve been searching, but can’t figure it out yet.

    • It absolutely need in designing…
      If u want to show the user where did he/she clicked u can style the element so that it takes a different color or some specific style but not outline! It completely ruin the design!

  4. I really like this layout, but how would you change the css to properly display checkboxes and option buttons?

  5. The select boxes looked out of place for me at least.

    Adding the following CSS makes it a little cleaner in webkit browsers I think 🙂

    .cbp-mc-form select {
    -webkit-appearance: none;
    border: 3px solid #fff;
    border-radius: 0;
    }

    Great work anyway, keep them coming.

    • Hi Aaron,

      you need to have a processing page where the data will be sent to. in the form tag, set action=”” and maybe set method method=”post”

      Hope you got what me trying to tell you.

      regards

  6. Dear Mary, Thank you for this. I really like it and will see how i can work with it.

    For those who cant see the select options, please do the follow:

    open the component.css files and at line 42 add the following lines of code. Save and view on browser. Please do confirm that its working on all browers cause i only checked on chrome and FF.

    .cbp-mc-form select option {
    background: rgba(0,0,0,0.3);
    }

    Now, i am trying to figure out how to add a check box and options fields.

    regards