Finding the Page ID

Hi!

I am wanting to create specific style changes to specific pages through my CSS - for example, on the About page, I want h3 to be 1.4em.

I am having difficulty locating the page id in the HTML. Can somewhere help me find this information in the code? What would I use to tell the CSS what specific page I would like to use?

Thanks!

In OJS 2.4.x, each page should have an id attribute on the body element which would seem to be what you’re looking for:
body#pkp-about-aboutSite { }
or
body#pkp-about-aboutTheJournal { }

1 Like

Thanks so much! This was exactly what I was needing!!!