Here is the page in question:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>NORTH SHORE DRAMA</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="head">
<div align="center"><img src="images/logo2.png" width="188" height="131" alt="North Shore Drama" /></div>
</div>
<div id="nav">
<ul class="menu">
<li class="current"><a class="abou" href="#">ABOUT US</a></li>
<li><a class="cour" href="#">COURSES</a></li>
<li><a class="prod" href="#">PRODUCTIONS</a></li>
<li><a class="priv" href="#">PRIVATE TUITION</a></li>
<li><a class="loca" href="#">LOCATION</a></li>
<li><a class="cont" href="#">CONTACT US</a></li>
</ul>
</div>
<div id="content">
<p> </p>
</div>
<div id="foot">
<p align="center"><a href="#">ABOUT US</a> • <a href="#">COURSES</a> • <a href="#">PRODUCTIONS</a> • <a href="#">PRIVATE TUITION</a> • <a href="#">LOCATION</a> • <a href="#">CONTACT US</a></p>
</div>
</div>
</body>
</html>
Everything works perfect in current versions of IE, Firefox, and Safari. BUT… How can I fix the .png files transparency when they load in IE6. And the top navigation menu’s margin is also messed up in IE6. Can someone please help me please???
Here is the css:
/* -------------------- MAIN LAYOUT STYLES -------------------- */
* {
margin: 0px;
padding: 0px;
}
body {
background: #000 url(images/back.jpg) no-repeat fixed center top;
}
#wrapper {
margin: 135px auto 15px;
width: 900px;
}
/* -------------------- HEADER STYLES -------------------- */
#head {
height: 145px;
background: url(images/swirls.png) no-repeat 0px bottom;
}
#head img {
padding-top: 10px;
}
/* -------------------- NAVIGATION STYLES -------------------- */
#nav {
background: url(images/nav_bar.png) no-repeat;
height: 46px;
}
.menu {
float: left;
list-style: none;
margin-top: 15px;
margin-left: 20px
}
.menu li {
float: left;
}
.menu a {
float: left;
margin-right: 34px;
display: block;
text-indent: -4000px;
}
.menu a.abou {
background: url(images/abou.png) no-repeat 0px -36px;
height: 27px;
width: 96px;
}
.menu a.abou:hover {
background: url(images/abou.png) no-repeat 0px 0px;
}
.menu li.current a.abou {
background: url(images/abou.png) no-repeat 0px 0px;
cursor: default;
}
.menu a.cour {
background: url(images/cour.png) no-repeat 0px -36px;
height: 27px;
width: 87px;
}
.menu a.cour:hover {
background: url(images/cour.png) no-repeat 0px 0px;
}
.menu li.current a.cour {
background: url(images/cour.png) no-repeat 0px 0px;
cursor: default;
}
.menu a.prod {
background: url(images/prod.png) no-repeat 0px -36px;
height: 27px;
width: 134px;
}
.menu a.prod:hover {
background: url(images/prod.png) no-repeat 0px 0px;
}
.menu li.current a.prod {
background: url(images/prod.png) no-repeat 0px 0px;
cursor: default;
}
.menu a.priv {
background: url(images/priv.png) no-repeat 0px -36px;
height: 27px;
width: 153px;
}
.menu a.priv:hover {
background: url(images/priv.png) no-repeat 0px 0px;
}
.menu li.current a.priv {
background: url(images/priv.png) no-repeat 0px 0px;
cursor: default;
}
.menu a.loca {
background: url(images/loca.png) no-repeat 0px -36px;
height: 27px;
width: 103px;
}
.menu a.loca:hover {
background: url(images/loca.png) no-repeat 0px 0px;
}
.menu li.current a.loca {
background: url(images/loca.png) no-repeat 0px 0px;
cursor: default;
}
.menu a.cont {
margin-right: 0px;
background: url(images/cont.png) no-repeat 0px -36px;
height: 27px;
width: 119px;
}
.menu a.cont:hover {
background: url(images/cont.png) no-repeat 0px 0px;
}
.menu li.current a.cont {
background: url(images/cont.png) no-repeat 0px 0px;
cursor: default;
}
/* -------------------- CONTENT STYLES -------------------- */
#content {
background: #d6d6d6;
}
/* -------------------- FOOTER STYLES -------------------- */
#foot {
background: url(images/footer.png) no-repeat;
}
#foot p {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 14px;
padding-top: 3px;
padding-bottom: 3px;
}
#foot p a {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000;
text-decoration: none;
font-weight: bold;
}
#foot p a:hover {
text-decoration: underline;
}
THANKS