This topic has 6 replies, 2 voices, and was last updated 6 months, 1 weeks ago ago by Luca Rossi
How to Increase checkout page font size for mobile devices
Dear @Deep,
I hope this message finds you well. To achieve the desired functionality swiftly, please insert the following custom CSS code by navigating to Theme Options > Theme Custom CSS > Global CSS in your admin panel:
@media (max-width: 480px){
body.woocommerce-checkout,
body.woocommerce-checkout *{
font-size: 18px;
}
}
We trust this code will assist you in enhancing your website’s mobile responsiveness. Should you require any further assistance, please do not hesitate to contact us.
Best Regards,
The 8Theme Team
font has been increaded but overlaping text box lable and inputes issue with this code please look into this
Hi @Deep,
Please delete the previous code and add this code instead:
@media (max-width: 480px){
.woocommerce-checkout form.checkout.woocommerce-checkout input {
font-size: 18px !important;
height: 50px;
}
}
Hope it helps!
code is working on text box but redio button and checkbox has some alignment issue please fix this screeshot attached
Hi @Deep,
Sorry for the confusion!
The correct code shoud be:
@media (max-width: 480px){
.woocommerce-checkout form.checkout.woocommerce-checkout input[type="text"],
.woocommerce-checkout form.checkout.woocommerce-checkout input[type="tel"],
.woocommerce-checkout form.checkout.woocommerce-checkout input[type="email"] {
font-size: 18px !important;
height: 50px;
}
}
Regards!
You must be logged in to reply to this topic.Log in/Sign up