It seems my google maps and highcharts elements (called through custom js on a menu render) are blocked from display in print. How do I override this in the CSS?
@CSWinnall Thank you! I found the issue. Just needed to add this to the CSS:
@media print {
.kn-menu {
display: block !important;
}
}