Hello this is my site www.cyclops.gr.My problem is with the quantity box,when i write the number of products it does not show them and when i click go to cart it shows the quantity,but this is not correct please help.
This is the link which has problems http://www.cyclops.gr/index.php/en/bath-set/waste-pedal-detail?limitstart=0&limit=10&showall=1.
Assist me as soon as you can.
Hi godfather21,
It works fine. If you use FireBug you would have been able to see that you've styled it in a way that prevents the actual text input to be visible to the user.
span.quantity-box {
float: left;
width: 27px;
padding-top: 5px;
}
input.quantity-input {
height: 19px;
width: 25px;
text-align: center;
font-weight: 700;
padding: 2px;
}
Both of these styles have a set width...??? doesn't give much room to see anything? especially when the inherited style has a padding of "0 12px"
Thank you very much,i really appreciate this!!!