RadZen Notification Position

Are we able to change the position of the RadZen notification to Bottom Right instead of Upper Right? I do not see any documentation on doing so?

Hi @Mike_Hartwig,

At the moment changing the position of the notification is not supported.

I'd consider this an essential development!

What if it obscures some important information?

Has this been addressed yet ?
At the moment I'm not able to change the position of the notification even when I override the different styles.
I have tried overriding the notification style without any effect:
.rz-notification-message.rz-growl {
position: fixed;
width: 35%;
Bottom: 0px;
right: 0px;
}

if I experiment with the css elements on the dev tools window, I am able to change to width and position to my desired outcome, but when I apply it on my css style file, it doesn't override !

Try using the !mportant modifier so it overrides the inline style.

.rz-notification-message.rz-growl {
position: fixed;
width: 35%;
bottom: 0px !important;
right: 0px !important;
}
1 Like

@korchev,
Thank you for the tip. I got it to display at the bottom right of the page by adding the following:
.rz-notification-message.rz-growl {
position: fixed !important;
width: 35% !important;
bottom: 0px !important;
right: 0px !important;
top: unset !important;
}

@korchev
Hi !!
If you click multiple times, the display position cannot be changed.
Is there any way?

.rz-notification {
bottom: 0 !important;
float: left !important;
left: 10px !important;
top: unset !important;
right: unset !important;
}

1 Like