treehouse : what would you like to learn today?
Web Design Web Development iOS Development

which page?

  • is there a way to understand which page is active? i created something for my bbpress forum that is different for some of my bbpress pages, i want to know where am i so i can change that thing for that particular page.

  • We'd need to see a link to your site?

    A common method is to add a different class to each page's body tag

      <body class="home">
    

    or

      <body class="contact">
    

    and then use that to style the appropriate navigation item.

  • thanks @Paulie_D, it was helpful