How to Adjust the Position of the Notification Popup

Modified on Tue, 2 Jun at 2:55 AM

Notification popup position


By default, the wishlist notification pop-up appears in the bottom-right corner of the screen. If you prefer to display it in a different corner, you can easily adjust the position using a few simple lines of CSS code. No advanced developer skills are needed.

How to Access the Position Settings

To customize the layout position, navigate to the following section inside the app backend:

  1. Go to Settings.

  2. Select General settings.

  3. Locate the Advanced CSS input box section.


Position Code Snippets


Copy and paste one of the following code snippets into the Advanced CSS input box, depending on your preferred location:


1. Top-Right Corner Position

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

2. Top-Left Corner Position

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

3. Bottom-Left Corner Position

CSS code:
.msg-tooltip{      left: 30px; }

Saving Your Changes

Once you have copied and pasted your chosen snippet into the Advanced CSS field, save your settings to apply the new position to your live storefront.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article