I am trying to set my .css file to make certain links have a hover setting. Using IE6 to browse. It worked in ASP classic.
Here is my .css file snippet (Have to have link and visited first):
And here is the header of my .Net page, including the CSS call:
Here is my .css file snippet (Have to have link and visited first):
Code:
a.nav: link {
color: black;
font-weight: bold;
font-size: 10pt;
text-decoration: none;
}
a.nav: visited {
color: black;
font-weight: bold;
font-size: 10pt;
text-decoration: none;
}
a.nav: hover {
color: black;
background: #FFCC00;
font-weight: bold;
text-decoration: none;
}
And here is the header of my .Net page, including the CSS call:
Code:
<head>
<title>Welcome to Century Color</title>
<link href="/Default.vsdisco" type="text/xml" rel="alternate" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<meta http-equiv="Content-Language" content="en-us" />
<meta content="Microsoft FrontPage 4.0" name="GENERATOR" />
<meta content="FrontPage.Editor.Document" name="ProgId" />
<link rel="stylesheet" type="text/css" href="mainStyle.css" />
</head>