VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: cesora on March 19, 2013, 18:23:16 PM

Title: Remove quantity box & +/-
Post by: cesora on March 19, 2013, 18:23:16 PM
Hi,

I'm using 2.0.16.

I'd like to know if it's possible to remove the quantity box along with the + / - buttons on the product pages and really anywhere else, including the cart.

Would anyone know how this can be done?

thanks.
Title: Re: Remove quantity box & +/-
Post by: jenkinhill on March 19, 2013, 20:44:29 PM
You can use Firebug to look at objects on the page to determine their related css - and edit that. http://forum.virtuemart.net/index.php?topic=102850.0

From memory you need to add something like this to the end of your Joomla template css:

.quantity-box {
display:none;
}
.quantity-controls {
display:none;
}