Hallo
I use the function sc_field_style.
So I change depending on the status of the value of the background color of a value.
see:
sc_field_style (LiefDat {}, ‘#FF0000’, ‘12px’, ‘#FFFFFF’, ‘Arial, sans-serif’, ‘bold’);
I would now like to pass the color value as a variable:
like this:
$red = ‘#FF0000’;
sc_field_style (LiefDat {}, $red, ‘12px’, ‘#FFFFFF’, ‘Arial, sans-serif’, ‘bold’);
But it will not just work.
regards
Kai