This topic has 4 replies, 2 voices, and was last updated 6 years, 7 months ago ago by Rose Tyler
On the product pages, how can I…
1. Make the font bigger?
2. Make it wider so two digit amounts can also be seen?
3. Make the button narrower?
Hello,
Please add code in cusrom css:
1.
.single-product .product-information .price {
font-size: 18px;
}
2.
.single-product .quantity input[type=number] {
width: 50px !important;
}
3.
.single-product .product-information .cart button[type=submit]:hover {
border: 1px solid #000000;
line-height: 37px !important;
}
.single-product .product-information .cart button[type=submit] {
line-height: 37px !important;
}
Regards
About this:
.single-product .quantity input[type=number] {
width: 50px !important;
}
How can I make the same change to cart and checkout pages?
.shop-table .table-bordered td.product-quantity .quantity input[type=number] {
width: 60px !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up