By johnalbin on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
7.x-3.x
Introduced in version:
7.x-3.1
Issue links:
Description:
The print style sheets should suppress the printing of Drupal’s admin toolbar. Edit your print.css and change this CSS rule:
/* Hide sidebars and nav elements */
#skip-to-nav,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
by adding the #toolbar, to the beginning of that rule. Like this:
/* Hide sidebars and nav elements */
#toolbar,
#skip-to-nav,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
Impacts:
Site builders, administrators, editors
Themers