This message was posted using Email2Forum by pavelteplitsky.
This message was posted using Email2Forum by pavelteplitsky.
Hello Ron,
Hi Pavel,
We are needing the ability to change the default background color of the Typewriter tool and also the default font color of the Typewriter tool as well.
It looks like the BackgroundColor that is available is specifically for the Textbox tool, correct?
Thanks.
-Ron
Hello Ron,
Thank you for coming back. Yes, you are right, we have options to set background color only for the textbox tool. But you can easily set background color for the Typewriter tool with this code:
.doc_text_area_text {
background-color: red !important;
}
You should add it to the head section of the Annotation web page.
As for the font color — you can change it in such way or, if you need another color, you can simply add an additional style line to the code above, for example:
.doc_text_area_text {
background-color: red !important;
color: green !important;
}
But you should note that this code will change color settings for the following annotation tools: text replace and watermark.
Best regards.
That solution worked perfect, thank you!