Is there a way to create a page that includes a table of information and also a button to print that information? The print link on the header is so small and hard for users to notice... and I would like to create a rich text page with a header etc to print.
You can also use css on the Knack generated link to make it look like a button
#kn-scene_XXX > div.kn-view.kn-info.clearfix > span > a {
font: bold 20px Arial;
text-decoration: none;
background-color: #EEEEEE;
color: #333333;
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
border-radius: 5px;
}
Create a Rich Text view and add this in the HTML.
<form onsubmit="window.print()">
<input type="submit" value="Print">
</form>