How to move image to left

  • DiscoveryCharterSchools
    Asked on July 12, 2019 at 5:42 PM

    I have a on going total field that I want to show as a cart image with the total next to it.  I attempted to do that on this form (bottom of page 3).  The problem I am having is that I want the cart image to be way to the left.  I don't see a field name for this field so I don't know how to do this.  Once this is moved the total field should be lined up to the right of it as well.

  • John Support Team Lead
    Replied on July 12, 2019 at 9:44 PM

    Instead of using an Image field, you can make use of a text field, then insert an image into that using HTML code.

    1562981563addtext Screenshot 10

    Here's the code:

    <p><img style="border: 0;" src="https://www.jotform.com/uploads/DiscoveryCharterSchools/form_files/cart.5d28ef99dcbb72.60763802.png" width="40px" />Total</p>

    This code is for the Cart image plus the word "Total" beside it. After that, we'll add a reference to a form field inside the said text field, in this case, the Total field. It's like passing the value of that field to the text field we created.

    And then we hide the Total field.

    1562982123edittext Screenshot 21



  • DiscoveryCharterSchools
    Replied on July 13, 2019 at 1:55 PM

    I hadn't thought about doing it that way... that sounds perfect.