Hide Text From Printing

html, printing

Solution

You could use the CSS @media rule for this. To start, add a class `noprint` to the both elements:

<a class="noprint">foo</a>

and then add a `@media print` rule to your CSS which hides the elements during print:

@media print {
    .noprint {
        display: none;
    }
}

Problem

I have a print page here: http://www.souq4cars.com/ppreview.php?id=611111161&u=10064&t=users_cars How do i hide the links at the bottom saying 'Close Window' and 'Print Page' from being printed on the printed page?

Original source