Make your website accessible in just 1 click – trusted by over 60,000 websites worldwide

Hide OneTap Toolbar in Print View

Hide OneTap Toolbar in Print View

Solution
				
					/* Hide OneTap/Overlay when printing */

@media print {
  .apop-accessibility,
  .apop-plugin-onetap,
  .apop-accessibility * {
    display: none !important;
    visibility: hidden !important;
  }

/* In case a print overlay causes issues: */

  .apop-overlay,
  .apop-backdrop {
    display: none !important;
  }

/* General: hide fixed UI elements when printing */

  .sticky, .fixed, [style*="position: fixed"] {
    display: none !important;
  }
}