How I can have the BESTILL-button alone and bigger then the print and empty form-button?

  • milladesign
    Asked on March 16, 2016 at 10:50 AM
    I wonder how I can have the BESTILL-button alone and bigger then the print and empty form-button?
  • Charlie
    Replied on March 16, 2016 at 11:03 AM

    You can use this CSS code to adjust the size of your submit button, reset button and print button:

    /* Submit button*/

    .form-submit-button {

        width: 300px !important;

        height: 80px !important;

    }

     

    /* Reset button */

    .form-submit-reset {

        width: 100px !important;

        height: 70px !important;

    }

     

    /* Print button*/

    .form-submit-print {

        width: 150px !important;

        height: 50px !important;  

    }

     

    You can adjust the width and height values to how large or small the buttons are.

    Let us know if you need more assistance on this.