Hi,
I have created a page process for Rich text editor in Oracle Apex 5.1.4
I need to style the text with color through the page process. Right now bold and underline is working
but not the color. Is it possible to do it in the code editor because user doesn't want to type and format the color each time?
begin
:P2_RTE := ' ';
:P2_RTE := :P2_RTE || '<p style="color:MediumSeaGreen;">This sentence is green color.</p> ';
:P2_RTE := :P2_RTE || '<font color="blue"> this sentence is <b><u>blue</u></b> color </font>';
end;
Thanks,
KJ