We are using VWD 2008 to locally develop and test our ASP.net application. When we test our project the css displays perfectly, but once we upload the project to the server (Server 2003 IIS6) the css styles is not displaying propperly.
Masterpage is linking the css in the following manner
My gut tells me that it has to do with the IIS installation as I also use a cssClass= "IE8Fix" (second issue) to fix a menu that is not displaying correctly which does not seem to be working on the server either.
Bruce Wilbru
7 Posts
CSS not working on Server 2003 IIS 6
Aug 18, 2010 12:08 PM|LINK
Hi,
We are using VWD 2008 to locally develop and test our ASP.net application. When we test our project the css displays perfectly, but once we upload the project to the server (Server 2003 IIS6) the css styles is not displaying propperly.
Masterpage is linking the css in the following manner
<link href="/newlook.css" rel="stylesheet" type="text/css" />
and have tried the following aswell
<link href="http://mydomain/project/newlook.css" rel="stylesheet" type="text/css" />
<link href="newlook.css" rel="stylesheet" type="text/css" />
My gut tells me that it has to do with the IIS installation as I also use a cssClass= "IE8Fix" (second issue) to fix a menu that is not displaying correctly which does not seem to be working on the server either.
.IE8Fix
{z-index: 100;
}
Any ideas on this?