H Guys,
On the single product page the plus and minus option for the quantity is not the same as your demo, this is what you have:
<div class="quantity buttons_added">
<input value="-" class="minus" type="button">
<input step="1" min="1" name="quantity" value="1" title="Qty" class="input-text qty text" size="4" type="number">
<input value="+" class="plus" type="button">
</div>
But all I have is this?
<div class="quantity">
<input step="1" min="1" name="quantity" value="1" title="Qty" class="input-text qty text" size="4" type="number">
</div>
How do I get your bits into my theme?