Submit button background does not show

  • stormingrobots
    Asked on December 6, 2018 at 3:16 PM

    https://www.jotform.com/build/83395024863159

    The metallic background looks fine from jotform.com

    But, when I access via an embedded script, it does not

    Jotform Thread 1665389 Screenshot
  • Anurag4274
    Replied on December 6, 2018 at 3:41 PM

    Your current CSS has the following code for the button's background image:

    background-image: url("/images/steel.png") !important;

    As you can see, the above code has a relative link - meaning it'll only work when the form is viewed on jotform.com domain.

    You need to convert this relative link to absolute:

    background-image: url("https://www.jotform.com/images/steel.png") !important;


    To know how to inject custom CSS codes, please visit this link:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes


    Hope this helps!


  • Elton Support Team Lead
    Replied on December 6, 2018 at 5:48 PM

    I assume this is resolved now. I can see the background on the submit button as suggested by Anurag4274.

    Submit button background does not show Image 1 Screenshot 20

  • stormingrobots
    Replied on December 6, 2018 at 6:22 PM

    thank you very much!