Archived topic
How to add rounding to all Labels on the site?
7 replies · Started by Mihail on August 5, 2021
The actual essence of the question is indicated in the title.
https://prnt.sc/1jkukpq
https://prnt.sc/1jkuoy7
https://prnt.sc/1jkutvg
Please tell me how to do this?
Hi there,
Any chance you can link us to the site in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
No problem. The site (test) is now at (sent it).
In this case, I immediately have an additional question:
is there no universal code that could do this so that every time I change the template I do not ask for help?
Try this CSS:
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select {
border-radius: 5px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
This code should always work for GeneratePress. I can't say other themes unfortunately.
Thank you! Exactly what I wanted 🤝
ps. but this can be changed? It's in the basket.
Hi there,
for the Quantity Buttons on the single product and the cart page, you can add this CSS:
.woocommerce form.woocommerce-cart-form .quantity.buttons-added .minus,
.woocommerce form.cart .quantity.buttons-added .minus {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.woocommerce form.woocommerce-cart-form .quantity.buttons-added .plus,
.woocommerce form.cart .quantity.buttons-added .plus {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
You guys are just space 👍 :)
Thanks as always! 🤝
Glad we could be of help!