I have a document containing a header with an image that represents a logo. The image is assigned the `logo` class. I would like to use CSS to hide `.logo` in the header after the first page. Conceptually I want to do something like this (but which doesn't work):
How can I target a class in the header on pages > 1?
@page:nth(2) {
img.logo {
display: none;
}
}
How can I target a class in the header on pages > 1?
Trevor DeVore
ScreenSteps
http://www.screensteps.com