How can I remove these reports when validating and just leave them red?
https://jmp.sh/WBBQE5i
https://jmp.sh/WBBQE5i
Under the Validation tab you have an actual message there instead of just the field name.
If you absolutely must, you can use CSS to hide the label.
If you absolutely must, you can use CSS to hide the label.
.field.error .basic.red.pointing.prompt.label { display: none !important; }
Changing the message will not remove it, because even if I give a space, it will appear.
display is not important because it is in element:
it works for me
It's not a completely OK solution
display is not important because it is in element:
element.style {display:inline-block !important;}
it works for me
.field.error .basic.red.pointing.prompt.label { visibility:hidden !important;position:absolute;}
It's not a completely OK solution
What's not okay with it and why use visibility hidden instead of display none?
because when display: none element disappears and visibility: none stays there, just not visible.
Display none is a significantly better solution, but unfortunately it cannot be used
Display none is a significantly better solution, but unfortunately it cannot be used
.......... why can't it be used? I thought you WANTED the element to disappear?
it is not possible to use display: none because it is in the element display: inline-block!important
I'm sorry I don't follow
You can change the validation messages style under the "Display form" action or in the form area if you are using that, the last style will not show the errors under the fields!
Best regards
Best regards
That's pretty fancy
it is super
This topic is locked and no more replies can be posted.