Change product text size and color

  • learningmindsets
    Asked on August 17, 2015 at 5:38 PM

    .form-checkbox-item label {
      font-size: 20px;
    }

     

    ALso--I noticed that the price is in bold in the auto generated list from my payment service--can I also change the font color for just the prices?

     

    Thanks--

    Tim

  • Elton Support Team Lead
    Replied on August 17, 2015 at 11:22 PM

    Here are the codes:

    /*change product checkbox text font size*/

    .form-product-name {

        font-size: 14px;

    }

    /*change the prices text size, color and unbold*/

    span.form-product-details b {

        font-weight: normal !important;

        color: #71A26F;

        font-size: 12px;

    }

    Feel free to change the property values on this codes to anything you want.

    If you need further help, let us know.