How to set top-center position for pnotify

Taras Kravets picture Taras Kravets · Oct 3, 2014 · Viewed 7.3k times · Source

How to set non pixels position? I try this

var stack = { "dir1": "down", "dir2": "right", "firstpos1": 50, "firstpos2": 50 };

But I this it is bad because of different screen resolution.

Answer

akaravashkin picture akaravashkin · May 16, 2017

Necroposting, but may help to other searchers. My solution without js recalculations:

js:

new PNotify({
    ...
    addclass: 'pnotify-center'
});

css:

.pnotify-center {
   right: calc(50% - 150px) !important;
}