Change name Price to Preço (portuguese).

  • mberman
    Asked on May 12, 2016 at 11:07 PM

     
     
    When I run my fomulário the My products appear the word "price" and does not appear in Portuguese as it is in my form "preço." How do I make it with the word "preço" at the time that I will turn the form? because in my form was the write in portuguese "preço" but when execute, change the word to English.
    Jotform Thread 838277 Screenshot
  • Chriistian Jotform Support
    Replied on May 13, 2016 at 12:35 AM

    Unfortunately there is no option in the form builder to change the Price label. However, we can still use css to change the label. Simply inject the css below. 

    .form-product-child-table th:nth-of-type(2) .form-sub-label {

        color: #fff !important;

    }

    .form-product-child-table th:nth-of-type(2) .form-sub-label:after {

        content: "Preço" !important;

        color: #6f6f6f !important;

        margin-top:-5px;

    }

    Please note that this css only adds the Preco on top of the label, but the price is still there.
    Do let us know if you need further assistance.