the logo position issue was solved.
Any ideas regarding background printing in the print dialog box? refer to the earlier screenshots.
@bharatkk you need to add -webkit-print-color-adjust: exact
to root element of your custom theme.
So if your root element is <table>
then change that to:
<table style="-webkit-print-color-adjust: exact">
This will force Print
button to preserve background colors.
3 Likes
Thanks @lubos.
That worked just fine.
How did you solve this?
Yes this working, thank you.