Every single page on my website has a unique class in the body tag. I've been able to successfully edit elements on a specific page using the following code:
.page1 .someClass p{
color: #cccccc
}
How can I achieve the same effect of changing the color if I navigate to another page, and the body class changes from page1 to page2 like so:
<body class="page2">
?
Furthermore, this color change should only occur when I am on either page1 or page2, and not on any other pages with different body classes. It's worth noting that all pages share the same structure for the body class.