Site logo

[Resolved] How to add rounding to all Labels on the site?

Home Forums Support [Resolved] How to add rounding to all Labels on the site?

Home Forums Support How to add rounding to all Labels on the site?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1885495
    Mihail

    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?

    #1885538
    Leo
    Staff
    Customer Support

    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 🙂

    #1885622
    Mihail

    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?

    #1885696
    Leo
    Staff
    Customer Support

    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.

    #1885910
    Mihail

    Thank you! Exactly what I wanted 🤝
    ps. but this can be changed? It’s in the basket.

    https://prnt.sc/1jt4qcn

    #1886095
    David
    Staff
    Customer Support

    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;
    }
    #1886334
    Mihail

    You guys are just space 👍 🙂

    Thanks as always! 🤝

    #1886392
    David
    Staff
    Customer Support

    Glad we could be of help!

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.