pdf quote does not have an accept button

0
The pdf quote does not have an accept button, the HTML version does. How can I put a button on there?

BTW, the screenshot is not of a real company or person it's demo
Responses (3)
  • Accepted Answer

    Saturday, February 23 2019, 08:21 AM - #Permalink
    0
    make sure the button is present also in the PDF version of the TEMPLATE (second tab)
    The reply is currently minimized Show
  • Accepted Answer

    Monday, February 25 2019, 05:29 PM - #Permalink
    0
    Yep, that's it. FYI, it's a fresh install that is missing the the links in the PDF.

    I added the tokens and the buttons are displaying as links as in the attachment. What can I do differently to have them show as buttons?
    The reply is currently minimized Show
  • Accepted Answer

    Tuesday, February 26 2019, 09:27 AM - #Permalink
    0
    well, what you can do is to include some button CSS styling in the "CSS" textarea field.
    something like this:


    .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: none !important;
    }
    .btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
    }

    .btn-block {
    display: block;
    width: 100%;
    }

    a.btn{
    text-decoration: none;
    }
    The reply is currently minimized Show
Your Reply