Home Forums Space themes support forum Stock quantity label isn’t displayed correctly (CSS) Reply To: Stock quantity label isn’t displayed correctly (CSS)

#436592

Bogdan Donovan
Keymaster

Hi,

Try to add the following code snippet to the Global Custom CSS area in Theme Settings to fix this issue.

@media (min-width: 1025px){
body .xts-single-product form.cart:not(.xts-variations_form) .quantity input[type=text] {
	width: 45px;
}
}

body div.quantity button, div.quantity input[type=text] {
   color: #777;
    background-color: transparent;
    box-shadow: none;
    height: auto;
    width: 35px;
    border-top: none;
    border-bottom: none;
    border-radius: 0;;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
    text-align: center;
}

This issue will also be fixed in the next theme update.

Kind Regards