HI,

Currently I have a views page which outputs a long table of rows.

When I try to print this page under Firefox(Under Omega), find out the table would be truncated, a lot rows missing.

Then I tested the same page under Batrik theme, the table prints fine.

So this is a problem under Omega.

Test environment:
Clean drupal 7.21
Omega 7.x-3.1
Firefox 27.0.1 (windows 7 64)

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

minneapolisdan’s picture

Check the CSS for overflow:hidden class somewhere on the DIV containing your table, that may be it.

steinmb’s picture

Priority: Critical » Normal
Status: Active » Postponed (maintainer needs more info)

Hi. Did you solve it?

hhvardan’s picture

the following works for me.

@media print {
  table tr {
    display: table-row-group !important;
  }
}