Moving the notification boxes

HI All



I’m sure this has been asked before and there must be a fix for it, but where can you modify the setting for the location of the red and green ajax notification boxes that pop up from time to time.



They get missed at the top right hand side of the screen, I would like them to appear in the middle about 300px down.



HELP!



Mark

Try changing the following.



For the customer side: around line 169 in /skins/YOURSKIN/customer/styles.base.css:

/* Notification box */
.cm-notification-container {
position: fixed;
[B][COLOR="Red"]right: 8px;
top: 0px;[/COLOR][/B]
z-index: 16;




For the admin side: around line 856 in /skins/YOURSKIN/admin/styles.css:

/* Notification box */
.cm-notification-container {
position: fixed;
[B][COLOR="Red"]right: 8px;
top: 0px;[/COLOR][/B]
z-index: 16;




Make sure to clear your template cache after making the changes.



Bob

Thanks Bob