NO BUG: If the form message is empty, it will not be hidden

Browser: Chrome (new)
OS: macOS / Windows / Linux / etc.

Hi,
I want to hide the default form messages so that I can display them as a popup. So, I clear the default message, but the message box is still displayed.

Is there any css code so we can hide the default messages of the form element? This solution does not remove the message part from the DOM, but it does solve the problem. thank you!

form custom css

%root% .success{
display:none
}

and this is not a bug select a correct category next time.

thank you @sinanisler,
So the error message will be hidden as below?

%root% .error{
display:none
}

if you want to hide ALL messages

%root% .message{
display:none
}

1 Like