There is a problem in one of the files that affects printing across the layout. The ctrl+p shortcut prints the white page
Problem is in _invoice.scss :
Code: Select all
@media print {
body * {
visibility: hidden;
}
Rafal
Code: Select all
@media print {
body * {
visibility: hidden;
}
Code: Select all
@media print {
.invoice-body * {
visibility: hidden;
}
}
Code: Select all
<ui:define name="head">
<script>
$(function(){
$(document.body).addClass('invoice-body');
});
</script>
</ui:define>
Users browsing this forum: No registered users and 1 guest