• Resolved Lasha

    (@lashac)


    Hey.

    I’m building a form with Forminator and I want to have a text in checkbox and radio fields.

    Text must be between question and answers. I have a description opition but it displays after answers.

    is there a way to display text/description between question and answers?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Nebu John – WPMU DEV Support

    (@wpmudevsupport14)

    Hi @lashac,

    Trust you are doing good and thank you for reaching out to us.

    Can you please try the following CSS and check if that helps?

    .forminator-field {
        display: flex;
        flex-direction: column;
    }
    
    label.forminator-checkbox {
        order: 3;
    }
    
    label.forminator-radio {
        order: 3;
    }

    You should add the CSS at WP Dashboard >> Appearance >> Customiser >> Additional CSS.

    I hope that helps. Please feel free to get back to us if you need any further assistance.

    Kind Regards,
    Nebu John

    Thread Starter Lasha

    (@lashac)

    It works but now gap between radio/checkbox answers increased.

    Plugin Support Saurabh – WPMU DEV Support

    (@wpmudev-support7)

    Hi @lashac

    You can adjust the gap by modifying the values for the margin-top and margin-bottom properties. You can add the following code and change the values until you get the expected space between the radio/checkbox answers.

    label.forminator-checkbox,
    label.forminator-radio {
        margin-bottom:5px!important;
        margin-top:5px!important;
    }

    Hope this information helps!

    Kind regards

    Luis

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @lashac ,

    We haven’t heard from you for over 2 weeks now, so it seems that you don’t have more questions for us.

    Feel free to re-open this ticket if needed.

    Kind regards
    Kasia

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Description’ is closed to new replies.