Is it possible to have the quantity figure aligned in the center of the box rather than to the left.
div .quantity input.qty
Thanks
M
Is it possible to have the quantity figure aligned in the center of the box rather than to the left.
div .quantity input.qty
Thanks
M
Hello,
You can drop this on your custom.css
form.cart {
position: relative;
margin: 0;
left: 250px;
}
Best regards,
Ismael
Thanks for the reply, but I am only trying to center the number inside the quantity box, the number "1" for example, not the whole element.
Thanks
M
Hi M,
Try to use this code:
.input-text.qty {
text-align: center;
}
If that doesn't work, try to use this instead:
.input-text.qty {
text-align: center !important;
}
Hope this helps. :)
Regards,
Ismael
Great thanks!
This topic has been closed to new replies.