• Hi there,

    First off, thanks for your help with my other two requests. I have the plugin working fine, it’s just formatting now.

    Is there a way to get each input type on the same line? I have two select inputs and a radio option but would like them on the same line.

    Is that possible?

    http://wordpress.org/extend/plugins/db-form/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Valentin

    (@valentinalisch)

    It’s possible using simple css styling 🙂

    Each field (input, radio, select, … ) is enclosed by
    a div with the class .dbf_wrapper.
    By giving this class a fixed width and float: left you are able to achieve a one-line-form.

    .dbf_wrapper {
    width: 150px;
    float: left;
    }

    Regards,
    Valentin

    Would we be able to enclose the db-form fields in a table to arrange the fields, is there a way ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Same Line’ is closed to new replies.