hi - have two things that work fine in IE but dont display
right in firefox, any ideas why?
1) side menu
2) this is a semi transparent bar over the top of a flash animation - cant see welcome bar at all?
right in firefox, any ideas why?
1) side menu
Code:
<!--sidemenu -->
#menu5 {
position:absolute;
left: -606px;
top: -6px;
width: 200px;
margin: 5px;
}
#menu5 li a {
height: 32px;
voice-family: "\"}\"";
voice-family: inherit;
height: 24px;
text-decoration: none;
}
#menu5 li a:link, #menu5 li a:visited {
color: #777;
display: block;
background: url(images/menu5.gif);
padding: 8px 15px 0px 10px;
text-align: right;
}
#menu5 li a:hover, #menu5 li #current {
color: #fff;
background: url(images/menu5.gif) 0 -32px;
padding: 8px 15px 0px 10px;
text-align: right;
}
#menu5 li a:active {
color: #fff;
background: url(images/menu5.gif) 0px -64px;
padding: 8px 15px 0px 10px;
text-align: right;
}
<!--end menu-->
<div id="menu5">
<ul>
<li id = "current"><a href="#"><span>HOME</span></a></li>
<li><a href="#"><span>NEW SALES</span></a></li>
<li><a href="#"><span>USED SALES</span></a></li>
<ul>
</div>
2) this is a semi transparent bar over the top of a flash animation - cant see welcome bar at all?
Code:
#flashmain {position:absolute;margin:0px auto;width:800px;text-align:left;float:center;z-index: 2;}
#welcomebar {
position: absolute;
float:left;
top: 0px;
left:-400px;
width: 800px;
height: 40px;
background-color: #333333; /* the background */
filter:alpha(opacity=60); /* Internet Explorer */
-moz-opacity:0.6; /* Mozilla 1.6 and below */
opacity: 0.6; /* newer Mozilla and CSS-3 */
}
<div class="flashmain">
<div id="welcomebar"></div>
<!--#include file="sidemen.asp"-->
<!--#include file="splashslide.asp"-->
</div>