Radio Field - Question | JoomShaper

Radio Field

YS

YUMA SCOTT

Template 1 year ago

is there a way to change the color of radio and check boxes? i can't seem to find the option in the template options. https://prnt.sc/jU0Orz4zWySc

0
3 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #166884

Those SPPB classes should be useful, example CSS

.form-builder-radio-item label::before  {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%; border: 2px solid black;
  position: absolute; top: 4px;  left: 0;
  background: white; }

.form-builder-radio-item input:checked + label::before  {background: green;}
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #166883

Hi Scott.

Indeed, probably your form took colors from template styles. But I am only guessing without URL. On raw Helix Ultimate it looks normal.


It means that you have to use Custom CSS to change colors. General CSS guide: https://www.w3schools.com/howto/howto_css_custom_checkbox.asp

0
YS
YUMA SCOTT
Accepted Answer
1 year ago #166886

Thanks Paul!

0