Notification popup position


By Default, the wishlist notification popup will appear on bottom right corner position. 

To adjust the preferred position your wishlist notification popup go to Settings > General settings > Advanced CSS section.

By adding simple CSS code to the input box, you will be able to customize the position of the notification popup. (No developer skills needed).



For Example,

1. For top right corner position

.msg-tooltip{
    top: 10px !important;
    bottom: unset !important;
}

Copy the snippet above and add it to Advanced CSS section:



2. For top left corner position

.msg-tooltip{
    top: 10px !important;
    bottom: unset !important;
    left: 30px;
}

Copy the snippet above and add it to Advanced CSS section:



3. For bottom left corner position

.msg-tooltip{
      left: 30px;
}

Copy the snippet above and add it to Advanced CSS section:

That's all, hope this helps!