Hi everyone!
I have an application that in some points show a message, but in one case i need it to be red instead of the standard green.
I've tried to change in the span:
apex_application.g_print_success_message := '<span style="color:red"><font color="white">SOME TEXT HERE</font></span>';
and in the inline of the page
#success-message {
background: #ef2004 !important;
}
But it still green, how can i do it?
I need only this one to be red, the rest must continue green.
using APEX 5.1 on google chrome.