Has anyone has luck changing the cursor on a custom button?
Forms Version: 10.4.1.164
I am using a custom HTML field and creating buttons within a table that will open documents in WebLink or another form.
Code in the HTML field
<input class="button button1" type="button" value="Begin Assessment" onclick="window.open('insertlink')">
Code in the CSS tab
.button {
border: double;
padding: 4px 4px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px
margin: 2px 2px;
cursor: move;
}
I have tried multiple cursor types and no matter what I have in the code, it goes to the default of pointer.
Any help is much appreciated. Thanks.