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
BTW, the screenshot is not of a real company or person it's demo
Responses (3)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0well, 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;
}
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »