southbeach
Programmer
Check this URL (using FF) and pay attention to the left hand side of your screen - Notice the hidden or mostly hidden content which pops out as you hover your mouse over ...
This is a site I am working on. FF looks great ... Now take a look at it using IE (I have IE 6).
Notice how the flash object that is intended to be hidden withing the pop-out or slide-out layer just shows on the upper left corner (or mostly there).
What causes this?
The CSS
The JS
The HTML
The rest of the JS code needed to embed the flash object can be obtained here
Thank you all for your time and assistance!
Regards,
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
This is a site I am working on. FF looks great ... Now take a look at it using IE (I have IE 6).
Notice how the flash object that is intended to be hidden withing the pop-out or slide-out layer just shows on the upper left corner (or mostly there).
What causes this?
The CSS
Code:
.hideslidemenu {
position:fixed;
top: 135px;
width: 295px;
left: -290px;
border:1.5px solid #FFF;
background-color:#222222;
font:bold 12px arial;
line-height:20px;
z-index: 10;
min-height: 205px;
text-align: center;
}
.showslidemenu {
position:fixed;
top: 135px;
width: 295px;
left: 0px;
border:1.5px solid #FFF;
background-color:#222222;
font:bold 12px arial;
line-height:20px;
z-index: 10;
min-height: 205px;
text-align: center;
}
Code:
function slideMenu(it,show) {
if(show > 0) {
document.getElementById(it).className='showslidemenu';
} else {
document.getElementById(it).className='hideslidemenu';
}
}
Code:
<div id="slidemenubar" class="hideslidemenu" onmouseover="slideMenu('slidemenubar','1');" onmouseout="slideMenu('slidemenubar','0');">
<div style="width: 100%; height: 24px; background-color: #006600; text-align: center;">MENU TITLE</div>
<div id="flashPlayer">
mp3!
</div>
</div>
The rest of the JS code needed to embed the flash object can be obtained here
Thank you all for your time and assistance!
Regards,
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.