• Resolved momzynet

    (@momzynet)


    Hello! I want to set more than 1 item on a line for radio fields. I also want to center it. How can I do it?

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

    (@wpmudev-support9)

    Hello @momzynet

    I trust you’re doing well!

    I’m afraid radio fields can’t be placed horizontally out of the box. It can be done with CSS code.

    Please edit the radio button and open the Styling tab, into an Additional CSS Classes field, add a custom CSS class. For example your-custom-css
    https://take.ms/5Cs4u

    Please use this code, replace the your-custom-css with a CSS class that you’ve added, add it to Appearance > Customizer > Additional CSS:

    .your-custom-css .forminator-radio {
    float:left;
    padding-right:20px;
    }

    And to center these options, please try:

    .your-custom-css {
    position: absolute;          
    transform: translate(50%, -50%) 
    }

    Have a good day!

    Cheers,
    Nastia

    Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @momzynet

    I hope you are doing well!

    We haven’t heard back from you for a while now so we’ve marked this ticket as resolved. If you do have any followup questions or require further assistance feel free to reopen it and let us know here.

    Kind regards,
    Nastia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show more than 1 item in radio field’ is closed to new replies.