I'm not sure when this actually began, but if a product is added to cart, the name appears on each screen--floating in the middle. Does not scroll with page. I am attaching a picture to show--see circled area.
Site is on Joomla 2.5 and running VM 2.6.0. www.heartofthemattereducation.com Feel free to add a product to your cart and see what I mean!
[attachment cleanup by admin]
it is coming from the product listing of your minicart ..
caused by this css
.container {
left: 50%;
position: fixed;
top: 50%;
transform: translate(-50%, -50%);
}
[attachment cleanup by admin]
I can see the css in firebug. What is the best way to remove it? I worry that if I remove the container class from css it will cause issues with something else.
.vm_cart_products .container {
position: static;
transform: none;
}