• Hi, I wanted to know if it was possible to change the layout of the forms. For example, arrange checkboxes horizontally or place fields in two columns. Where do I find the HTML file on my server?
    Are there other ways to do this? Thank you

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello there,

    I hope you’re doing well :D.

    I checked your link and this form is not related with our YITH WooCommerce Product Add-Ons plugin.

    The plugin seems to be https://wordpress.org/plugins/wc-kalkulator/

    I suggest you to contact their support for more information.

    I hope it helps you.

    Have a good day.

    Thread Starter nuddu01

    (@nuddu01)

    HI! In reality I had temporarily disabled the plugin to find other solutions. I have reactivated now, I’m waiting thanks!!

    Hello there,

    I hope you’re doing well 😀

    If you want to place the checkbox in two columns, you’ll need to add the following CSS rule on Appearance > Customize > Additional CSS

    .options-container .options.per-row-1 {
        grid-template-columns: repeat( 2, minmax(0, 100%) ) !important;
    }

    Please, try it and let me know.

    Have a good day.

    Thread Starter nuddu01

    (@nuddu01)

    Oh thank you very much! Last question: what if I wanted to put “Che tipo di birra vuoi inserire” and “Opzione” on the same line? Or at least put two null fields on the same line? Thank you

    Hello there,

    I hope you’re doing well :D.

    Please, try to add the following CSS rule on Appearance > Customize > Additional CSS

    .yith-wapo-addon-type-select:not(.hidden) {
        display: flex !important;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
    }
    .yith-wapo-addon-type-select select {
        margin-left:10px;
        margin-top: 5px
    }

    Please, try it and let me know.

    Have a good day.

    Thread Starter nuddu01

    (@nuddu01)

    No.. it doesn’t work, it tightens the fields but doesn’t put them in two columns. Do you have other ideas?

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘help for form position’ is closed to new replies.