Skip Navigation

[Resolved] Using icons instead of checkboxes

This support ticket is created 6 years, 4 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 1 reply, has 2 voices.

Last updated by Luo Yang 6 years, 4 months ago.

Assisted by: Luo Yang.

Author
Posts
#1114177

Hi, I want to add icons instead of the standard checkboxes. Is this possible? Also it would be nice to use a responsive layout with 2 colums to display the content.

The layout should be 1 row with 2 cells of 50% width each and below one row 100% width. Buttons below (reset/submit)

Can you do a suggestion to achieve this?

#1114883

Hello,

Q1) I want to add icons instead of the standard checkboxes. Is this possible?

There isn't such a built-in feature with Types plugin or Toolset form plugin, you might consider custom codes, for example:
hidden link

Q2) The layout should be 1 row with 2 cells of 50% width each and below one row 100% width. Buttons below (reset/submit)
This should be be possible with some simple CSS codes, for example:

li.checkbox {
    width: 49%;
    display: inline-block;
}