• Resolved rodj2020

    (@rodj2020)


    Just recently discovered this terrific plugin. Thank you!
    I have done a search on this but couldn’t find anything.
    Is it possible to move the existing “Description” position from underneath the input area up to just under the “Label” position? If not, may I suggest this for a future option enhancement?
    Thanks again for a very useful plugin!
    Cheers.
    RJ

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @rodj2020

    I trust you’re doing well!

    Out of the box I’m afraid it is not possible. It can be done with some additional CSS code.

    Please share here a link to the page with a form so we could provide a CSS code that will match your site.

    Kind regards,
    Nastia

    Thread Starter rodj2020

    (@rodj2020)

    Thank you!
    I have set up a sample form here-
    https://sandbox.victoriachristadelphians.com/

    Best Regards,
    RodJ

    Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @rodj2020

    Thanks for providing the link but, unfortunately, I don’t see any form there.

    I suppose you might have removed or hide it for now as we didn’t respond immediately. I apologize for long waiting time too!

    Could you please bring back the form on the page so we could see it? It’s always best (unless it’s really “generic” piece) to create that kind of CSS based on a specific site so it would help a lot.

    Best regards,
    Adam

    Thread Starter rodj2020

    (@rodj2020)

    Very odd what happened there. It just stopped displaying! I had to delete the form and create a new one! Please have another look.
    Thank you.

    Plugin Support Dimitris – WPMU DEV Support

    (@wpmudev-support6)

    Hello @rodj2020

    The following CSS rules should do the trick. You can add them in Appearance->Customize->Additional CSS:

    .forminator-field {
      display: grid;
    }
    
    label.forminator-label {
      order: 1;
    }
    
    span.forminator-description {
      order: 2;
    }
    
    input#forminator-field-name-1,
    input#forminator-field-email-1,
    input#forminator-field-phone-1,
    textarea#forminator-field-textarea-1 {
      order: 3;
    }

    Thank you,
    Dimitris

    Thread Starter rodj2020

    (@rodj2020)

    Fantastic! That did the trick!
    Thank you so much!

    Best Regards,
    RodJ2020

    I’m using the included “Material” Design Style and had to update the CSS as follows

    .forminator-field {
      display: grid;
    }
    
    label.forminator-label {
      order: 1;
    }
    
    span.forminator-description {
      order: 2;
      margin: 0 0 5px 0;
    }
    
    .forminator-field > div {
      order: 3;
    }
    
    .forminator-error-message {
        order:4;
    }
    • This reply was modified 4 years, 5 months ago by Lucas Balzer.
    Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @lbalzer

    Yes, with different design style the CSS might require some adjustments indeed.

    Thanks for sharing this version, I’m sure somebody will find it useful!

    Best regadrs,
    Adam

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