I have a dilemma with my designer-created stylesheet that heavily relies on ids. For example:
<div id="globalheader">
<ul id="globalnav">....
Here is the CSS:
#globalheader { width: 715px; height: 100px; margin: 18px auto; position: absolute; top: 0; left: 20; z-index: 9998; }
#globalheader #globalnav { margin: 0; padding: 0; }
#globalheader #globalnav li { display: inline; }
The issue arises when I change one of the div elements to 'runat=server', which changes the ClientID, resulting in incorrect display. Any suggestions on how to solve this problem?
-Edoode