VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: katieps on January 15, 2015, 23:19:16 PM

Title: ERROR names of products added to cart are appearing in the middle of screen
Post by: katieps on January 15, 2015, 23:19:16 PM
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]
Title: Re: ERROR names of products added to cart are appearing in the middle of screen
Post by: GJC Web Design on January 15, 2015, 23:43:23 PM
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]
Title: Re: ERROR names of products added to cart are appearing in the middle of screen
Post by: katieps on January 19, 2015, 22:05:47 PM
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.
Title: Re: ERROR names of products added to cart are appearing in the middle of screen
Post by: GJC Web Design on January 19, 2015, 22:17:39 PM
.vm_cart_products .container {
  position: static;
  transform: none;
}