Submit Button Custom Image for Retina Displays

  • makersbootcamp
    Asked on August 8, 2017 at 11:05 PM

    Hi there,

     

    I can't figure out the CSS to size down a custom submit button image to work well for retina displays.

     

    My form is here: https://www.jotform.com/build/72118654882463

     

     

  • selenhaysal
    Replied on August 9, 2017 at 3:11 AM

    I have reviewed your form, and to resize the custom button you may add the following code into your CSS codes:

        transform: scale(0.5,0.5); // resizes

        -ms-transform: scale(0.5,0.5);

        -webkit-transform: scale(0.5,0.5);

        -moz-transform: scale(0.5,0.5);

        margin-left:25%!important; //centers the image

    I am sending a screenshot of the applied code, please contact again for any further problems.

    Submit Button Custom Image for Retina Displays Image 1 Screenshot 20

  • Charlie
    Replied on August 9, 2017 at 4:26 AM

    If the above suggestion by selenhaysal does not work, please do try the following:

    1. First, remove the margin-left and text-align on the .form-buttons-wrapper:

    Submit Button Custom Image for Retina Displays Image 1 Screenshot 30

     

    2. Also remove the code block highlighted below. 

    Submit Button Custom Image for Retina Displays Image 2 Screenshot 41

     

    3. After that, simply inject this custom CSS code in your form:

    #input_2 > img {

      width: 100% !important;

    }

    The alignment of the button and the width of the parent element should not be a problem as they are already defined. You just need to set the image button to follow the width of the parent element button. Here's a cloned test form that I have: https://form.jotformpro.com/72201529026952. You can test it on different mobile device as it should already be mobile responsive. 

    I hope that helps. 

  • makersbootcamp
    Replied on August 11, 2017 at 2:08 AM

    Sweet. 

     

    I see the above sample is kind of a back and forth dance while the lower works in most cases. Thanks so much!

     

     

  • Charlie
    Replied on August 11, 2017 at 3:13 AM

    Glad to hear that the suggestion works. If you need any help again, feel free to drop by here in the forum.

    Thank you.