Info Popups

I am sure this has been covered many times before, But I am unable to find the solution.

I need to move the little Green/red info popups from the top right of the screen to the middle.



Also it would be good if I could make them look a bit better at the same time. Maybe there is an add on that will do this.



Thanks in advance

Alan

for Responsive theme CS-Cart 4.x in file “design/themes/responsive/css/styles.less”

find this:


.notification-container {
position: fixed;
top: 0;
right: 40px;
z-index: 1022;
min-width: 300px;
width: 40%;
}


and replace 40px to 30% for property “right”:


.notification-container {
position: fixed;
top: 0;
right: 30%;
z-index: 1022;
min-width: 300px;
width: 40%;
}

[quote name='Damir (WSA-team)' timestamp='1427131315' post='208780']

for Responsive theme CS-Cart 4.x in file “design/themes/responsive/css/styles.less”

find this:


.notification-container {
position: fixed;
top: 0;
right: 40px;
z-index: 1022;
min-width: 300px;
width: 40%;
}


and replace 40px to 30% for property “right”:


.notification-container {
position: fixed;
top: 0;
right: 30%;
z-index: 1022;
min-width: 300px;
width: 40%;
}


[/quote]Thanks you for the help



Alan

you are welcome

Thanks Damir or this info