• Resolved Iacopo

    (@iacopoincerpi)


    Hi, it’s possible to show the checkbox element setted as button style type in grid? I want a grid of 3×3 elements . Thanks

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Tahmid ul Karim

    (@tahmidulkarim)

    Hi @iacopoincerpi,

    You can customize the layout of the checkbox element using custom CSS codes. There is a separate section within the Form settings where you can add any CSS codes to customize your form.

    Thank you!

    Thread Starter Iacopo

    (@iacopoincerpi)

    Yes. but wich code.

    Thanks

    Plugin Support Tahmid ul Karim

    (@tahmidulkarim)

    Hello @iacopoincerpi,

    In order to provide a specific code we would need more information regarding the design that you want to implement. Providing custom codes is beyond the scope of our support.

    But as a starting point, you can use this code –

    .grid .ff-el-input--content {
    width: 35%;
    }

    Please note that you have to add a container class (grid) in the checkbox field.

    The above code will only divide the checkbox buttons into two rows. For any further customization, you would need to add additional codes.

    Thank you!

    Thread Starter Iacopo

    (@iacopoincerpi)

    a block 3×3 with checkbox element

    Plugin Support Tahmid ul Karim

    (@tahmidulkarim)

    Hi @iacopoincerpi,

    Sorry for the delayed response.

    You can use the following code –

    .grid .ff-el-input--content {
    width: 50%;
    }
    
    .grid .ff-el-input--content .ff-el-form-check {
    margin-right: 10% !important;
    }
    
    .grid .ff-el-form-check label>span {
    border: 1px solid #dcdfe6 !important;
    }

    You can further update the code to match the exact style that you want to implement.

    Remember to add the class name ‘grid’ as the container class of the field, see this screenshot.

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Checkbox button style tipe display in grid’ is closed to new replies.