CSS Hint of the Day
December 15th, 2005This is the code I use to keep the sidebar (the narrow column at the right) from printing:
@media print
{
#sidebar { display: none; }
}
The “@media print” qualifier specifies that the enclosed style applies only when printing. The “display: none” turns off display of the element named #sidebar. It’s that simple.

December 15th, 2005 at 10:56 am
The one thing missing with CSS is the ability to create custom columns…
December 15th, 2005 at 8:01 pm
Ahh, thank you. :))