CSS to allow element in print

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?

Hi @Pieter

Look into @media print in css

That should point you in the right direction.

Craig

@CSWinnall Thank you! I found the issue. Just needed to add this to the CSS:

@media print {

    .kn-menu {

        display: block !important; 

    }

}