Styling of information/warning/error message

5
Is it possible to put a cross (indicating: click here to close the popup) in the upper right corner of the information/warning/error message popup using styling? For our B2C use it isn't obvious to average Internet user that they have to click on the popup to close it when there's no such cross.
asked
2 answers
6

This is possible if you would change the background image in your custom stylesheet and put it in the right top corner.

Example:

.tundra .mendixDialog_error .mendixDialog_content {
background: url(images/layout/bg_error.gif) no-repeat right top; }

Class warning pop up: mendixDialog_warning Class information pop up: mendixDialog_message

It's not possible to add HTML/text to the pop up.

answered
1

Yes, you could change the background with an image. Open firebug and identify the correct css class. I've found the css class for the warning:

.tundra .mendixDialog_warning
answered