Hello,
You will find this in the Hikashop Add to Cart notification Plugin, but if it's for soleve your display issue, that's really not the most simple way, and required solid html & php knowledge.
Follow my step by step process to move your popup :
- In your Hikashop Add to Cart notification Plugin in the Auto-hide delay option enter a very long delay.
- Add a product to cart => Your pop up will be displayed
- Use your inspector tool to analyze the popup html and get the class
- create your css command and add it to your frontend file
Now, some advices to create good priority css command :
1. Check that your selector is well written, good class html and no mistake or typo
2. If your command is visible in your inspector tool, but is overrided (css command crossed out), then his priority isn't strong enough.
=> Some css priority system explanation :
From less to the highest priority :
.
html_class_element {command: value}
.
html_class_module .
html_class_element {command: value}
.
html_class_page .
html_class_module .
html_class_element {command: value}
.
html_class_page .
html_class_module .
html_class_element {command: value
!important;}
Note, that if 2 css command have strictly the same selector, then the last written in the css file will be the one used.
Hope this will help you to achieved what you need.
Regards