Forum How do I...?

Hiding a specific class in the header after page 1?

trevordevore
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):

@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

mikeday
Unfortunately that doesn't work, you will need two separate headers I think.
trevordevore
Okay, thanks for letting me know @mikeday.

Trevor DeVore
ScreenSteps
http://www.screensteps.com