I would like to print my page without headings.
Is there a way I can:
- make the heading - <DIV id="heading">not show when I am doing a print
- and make a - <DIV id="summary">show only when doing a print?
I would like to print my page without headings.
Is there a way I can:
make the heading <DIV id="heading"> not show when I am doing a print 
and make a <DIV id="summary"> show only when doing a print?
 
    
    @media print { 
 #heading{
  display:none;
 }
 #summary{
  display:block;
 }
}
try to hide/show them via @media blocks:
inside css:
@media print {
  #heading {
    display: none !important;
  }
}
@media screen {
  #summary{
    display: none !important;
  }
}
 
    
    .heading{display:none;}
means setting the display property to none ..will hide the element
