Product Added To Cart Pop-Up

Hello, I’ve searched for awhile in the stylesheet for this but I cannot locate it. I am trying to update the size of the pop-up box to accommodate a larger “Checkout” button. Does anyone know the class to edit in the stylesheet?



Take a look at the following post:

[url]http://forum.cs-cart.com/showpost.php?p=66518[/url]



Looks like this is most likely what you want:

/* Product notification */
.product-notification-container {
position: absolute;
top: 50%;
left: 50%;
margin: -80px 0 0 -200px;
color: #000000;
[B][COLOR="Red"]width: 400px;
height: 160px;[/COLOR][/B]
z-index: 30;
}




Bob

[quote name=‘jobosales’]Take a look at the following post:

[url]http://forum.cs-cart.com/showpost.php?p=66518[/url]



Looks like this is most likely what you want:

/* Product notification */
.product-notification-container {
position: absolute;
top: 50%;
left: 50%;
margin: -80px 0 0 -200px;
color: #000000;
[B][COLOR="Red"]width: 400px;
height: 160px;[/COLOR][/B]
z-index: 30;
}




Bob[/QUOTE]





Perfect, thanks!