You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When print the page (Ctrl + P), the breadcrumb and footer is visible in the page. I want to remove these when printing.
Tried this CSS, but it's not working. Still breadcrumb and footer is not hidden. Other elements are hidden :
@media print {
body* {
visibility: hidden; /* // part to hide at the time of print */
}
.breadcrumb {
display: none !important; /* //this is not working */
}
footer {
display: none !important; /* //this is not working */
}
.app-footer {
display: none !important; /* //this is not working */
}
#printable* {
visibility: visible !important; /* // Print only required part */text-align: left;
-webkit-print-color-adjust: exact !important;
}
}```
The text was updated successfully, but these errors were encountered:
When print the page (Ctrl + P), the breadcrumb and footer is visible in the page. I want to remove these when printing.
Tried this CSS, but it's not working. Still breadcrumb and footer is not hidden. Other elements are hidden :
The text was updated successfully, but these errors were encountered: