Adding checkbox to the right of text instead of below, E&P FORMS

Hello,

I would like to make the checkbox button to the right of the text rather than below? How do i do this? This is for the E&P forms plugin

Also I would like the x to not be displayed.

https://digizal.ch/evaluation/

Thanks

Gavin

Hi There,

Please add the my-group to the group name field of your item:

After that add this custom CSS under Theme Options > CSS:

body .itemBloc > div[data-group="my-group"] > br {
    display: none !important;
}
body .itemBloc > div[data-group="my-group"] {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.