+/- Icons In Add To Cart Bar

GK User
Sun Jan 06, 2013 9:48 pm
HI and Happy New Year to all!

http://limeducks.com.au/online-shopping ... bbi-detail

On the above page, the Plus and Minus quantities have no value.

My code shows
Code: Select all
<input type="button" class="quantity-controls quantity-plus">
<input type="button" class="quantity-controls quantity-minus">


I need it to show this:
Code: Select all
<input type="button" class="quantity-controls quantity-plus" style="font-size:18px" value="+">
<input type="button" class="quantity-controls quantity-minus" style="font-size:24px" value="-">


Can anyone please show me how to achieve this?

Latest Template Update
VM 2.0.16
J 2.5.7

All the best
User avatar
Expert Boarder

GK User
Mon Jan 07, 2013 8:23 am
This quantity box comes from VirtueMart core code so you can try to find this in components/com_virtuemart directory or just create graphics with +/- and add code like this :

Code: Select all
input.quantity-plus { background: url('path/to/image') no-repeat; }
input.quantity-minus { background: url('path/to/image') no-repeat; }
User avatar
Platinum Boarder

GK User
Sat Jan 12, 2013 6:46 am
Thanks :)
User avatar
Expert Boarder


cron