Non blocking Show message activity alignment

1
In Mendix we have the activity 'Show message'. When the blocking property is set to false the pop-up is default shown at the left bottom of the screen. Is it possible to show this pop-up at the right bottom of the screen?
asked
1 answers
2

Use firebug to identify the right css class and apply this style in your custom theming. I think this class is using position:absolute with the top and left attributes. Modify these attributes in your custom theme.

Edit:

Add this to your custom theme:

.mendixToaster {
    top:100px !important; (adjust these to specify the position of the element) 
    right:50px !important; (adjust these to specify the position of the element) 
    }
answered