2
Views
4
Comments
Help Screen Color
Question
How to change Help screen tooltip color?
2023-03-30 10-13-40
Miguel Antunes
Hello Luis,

you change that color in the richwidgets eSpace, Private>Widget_Tooltip, style sheet:

div.Widget_Tooltip {
position: absolute;
z-index: 3000;
border: 1px solid #888888;
background-color: #FFFCA9; <---
color: #555555;
padding: 8px;
max-width: 400px;
_width: expression(this.clientWidth>400?"400px":"auto");
}
 
or you can simple overwrite it, in one screen by adding the following on screen style sheet

div.Widget_Tooltip {
background-color: #YOU_COLOR;
}

regards,
Miguel
2024-01-05 16-00-17
Filipe Lourenço
i prefer the second choice but the problem is that some things are not displaying well like feedback messages and the position of the help screen link
2023-03-30 10-13-40
Miguel Antunes
Hmmm,

thats strange, since we are just changing the color, and not anything related with position. If you simple use the widget without overwriting it works well?

regards,
Miguel
2024-01-05 16-00-17
Filipe Lourenço
Yes it works
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.