in same site i have a page disclaimer 2 times in 2 different section
corporate > disclaimer.html consumer > disclaimer.html
one good this my company's custom cms is generates body id
for each page
but the problem here is he generate id
as same as page name, and i can't change name and can't give different ID
both pages having same id <body id="disclaimer">
and
i want to apply 2 different style to <p>
to both pages
like
for corporate > disclaimer.html i need this p { color:#666}
for consumer > disclaimer.html i need this p { color:#000}
how to do this, is there any pure css way ? if it's not possible with pure css then give me jquery solution.
update:
i can't add per page basis css file in <head>
.