My submit and print buttons only work when I hover over them

  • markporter
    Asked on July 19, 2017 at 9:03 AM

    my submit and print buttons only work when I hover over them. I want them to be there all the time. How do i do this?

     

  • Jan
    Replied on July 19, 2017 at 11:53 AM

    I was able to replicate the issue when I opened your form. Please inject this custom CSS to fix it:

    .form-all .qq-upload-button, .form-all .form-submit-button, .form-all .form-submit-reset, .form-all .form-submit-print {
       color: #999999 !important;
       border: 3px solid #ffffff !important;
       -moz-box-shadow: 0px 0px 0px 1px #d9d9d9, 0px 1px 2px 0px rgba(0, 0, 0, 0.40);
       -webkit-box-shadow: 0px 0px 0px 1px #d9d9d9, 0px 1px 2px 0px rgba(0, 0, 0, 0.40);
       box-shadow: 0px 0px 0px 1px #d9d9d9, 0px 1px 2px 0px rgba(0, 0, 0, 0.40);
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's the result:

    My submit and print buttons only work when I hover over them Image 1 Screenshot 20

    Hope that helps. Thank you.