would like the messages to appear at bottom right as they are getting in the way of the breadcrumbs and other options (v2020)over rode:#toast-container {
position: { X: ‘Right’, Y: ‘Bottom’ };
top: 0;
right: 0;
z-index: 1050;
padding: 20px; }
doesn’t see work and/or not sure this is correct
sticcino wrote:
position: { X: ‘Right’, Y: ‘Bottom’ };
top: 0;These may not be correct.
My solution was not moving it all the way to the bottom, but instead lower it so it sits just down of the breadcrumbs. Added this to custom styles:#toast-container{
padding-top:110px
}
thanks, i’ll try that out
arbei wrote:
sticcino wrote:
position: { X: ‘Right’, Y: ‘Bottom’ };
top: 0;These may not be correct.You may just change the “top” to “bottom”, e.g.position: absolute;
bottom: 0;