HOw can I adjust the size of the text in my auto generated credit card section I would like to make the text 12 pt font and remove the line above it.

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

    Here is a screen shot--I can't get at this value from the designer.

     

    Thanks--

    Tim

     

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

    Hello Tim,

    While I couldn't find a screenshot on your post, I think the text instruction is sufficient. Taking the initiative, I think you're referring to this text "Step 3 - Enter Payment Information" and the line above it? If yes, inject this CSS codes to your form, this should make it 12pt and remove its line above it. You can use the same code on your other forms.

    span.form-payment-total + hr {

        border: none;

    }

    th[id^="ccTitle"] {

        font-size: 12pt;

    }

     

    Cheers!

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

    And here's how to add a green box around the total text. You can append this code.

    span.form-payment-total {

        border: 1px solid #008000;

        padding: 4px;

    }