Hello,
I have a calculation (BMI-calcualtion) field that uses two input fields (length and weight).
If the BMI value is less <25 I want a text filed to show but hide for any other value. But it was showing all the time so I added this CSS:
#field_1_60.hidden {
display: none;
}
But now it doesn’t show if the value is < 25. The text field only shows if you initially calculate a value >25 and then try again with a calculation with the value <25.
Why is it like this?