Changing how the map is printed
It is possible to specify an alternative CSS to be used when printing the map, which makes it possible to hide or change parts of the map display when it is printed.
- Add an additional stylesheet, e.g.:
<link rel="stylesheet" type="text/css" href="mapper/kemnh/style/kemnh_print.css" media='print' />
Suppose that you don't want items with a class of noPrint
to display:
- Add to kemnh_print.css an entry such as:
.noPrint
{
display: none;
}