Within the structure of a Master Page (C.masterpage) lies a parent master page (P.masterpage) that contains all 10 CSS files included in the head section. These CSS files are currently being applied across the entire site.
We are now tasked with creating new pages that require different styles. The goal is to replace two style sheets from the previous set, or remove them if feasible, and add new style sheets to apply the desired look to these new pages.
In P.Masterpage, all CSS files reside within the head tag and are runtat server-compatible. Despite having a content placeholder in p.masterpage, the CSS files exist outside of it. The content placeholder in P.masterpage is simply an empty tag. I am seeking guidance on how to accomplish this task effectively.
Thank you