I was trying to get a message displayed above the tabs when a certain value was set.
So I added a rule and entered my text in the box for “Display a message”, since I thought this would do exactly what I wanted. Though, I can’t see a message.
It works fine, if I use the alert message box for my info text.
Hi,
The “Display this message” will append it to the current field (if the rule targets a field) and not add it above the form.
You could add a custom message above the form with custom code like this:
$("#tabWrapper").prepend("<div id='your_custom_id_makes_it_possible_to_remove_message' style='color:red;font-size:20px;'>The message you want to show</div>");