I'm struggling to grasp this concept.
The HTML elements in the master page have their ids changed with a prefix, which is causing a disruption in the CSS layout.
In the master page, I currently have:
<div id="container" runat="server">
<asp:ContentPlaceHolder ...
...
After rendering, the code appears as:
<div id="ctl00_ctloo_container">
...
This change is causing the CSS styles to be lost.
Is there a way to prevent this from happening?
Thank you in advance!