Hi everyone, how can I manage to not include the edit and delete button whenever I hit the print? Thanks!
There may be a code based way to do this but I’m not a coder. To get around this using Knack I simply change the currency total field to be the edit link.
Hey Ronald,
If you want to simply change the styling swhen printing you can use the CSS media rules like this…
@media print {
.kn-table-link {
display: none;
}
}
You can target in this case the link and then remove it. You could perhaps do the whole columns looking a bit neater.
Hope this helps
Johnny
Hey @Johnny_Appknowledged_UK - I knew you’d know how to do it 
@Johnny_Appknowledged_UK saw it somewhere before coming here again
Thanks anyways, really appreciate it 
